/** * 任务状态 chip:圆点 + 压缩状态词,按状态机分组上色(等待类脉冲动画)。 */ export interface StatusChipProps { /** 状态机 16 态之一;决定颜色组与动画 */ status?: 'init' | 'analyzing' | 'plan_review' | 'decomposed' | 'speccing' | 'spec_review' | 'ready' | 'blocked' | 'queued' | 'executing' | 'exec_review' | 'failed' | 'needs_attention' | 'done' | 'paused' | 'cancelled'; /** 覆盖默认中文标签 */ label?: string; } export declare function StatusChip(props: StatusChipProps): JSX.Element;