/** * 顶栏计数徽章:⚠ 待审批(紫脉冲)· ▸ 待执行(绿)· ◉ 执行中(青)· ⛓ 被阻塞(琥珀虚线边)· Σ 总量(中性)。hover 展开文字标签;count 为 0 时灰化。 */ export interface CountBadgeProps { kind?: 'gate' | 'ready' | 'run' | 'blocked' | 'total'; count?: number; /** 覆盖默认中文标签 */ label?: string; title?: string; } export declare function CountBadge(props: CountBadgeProps): JSX.Element;