export type BadgeStatus = 'running' | 'done' | 'error' | 'blocked' | 'warn'; export declare function statusBadge(status: BadgeStatus): string;