/** * Status color-scheme resolver used by chat-adjacent badges (StatusBadge * components rendering job, ClickUp task, and log-level statuses). * * Lib-side subset of the hub's `lib/utils/agent-status-message.ts`. The * hub file also carries CSS-class resolvers + an `AgentStatusMessage` * builder for the SSE-status surface; those live hub-side because they * reference hub-only ODS class names. This function returns the abstract * color scheme name only — the consuming `StatusBadge` (in this lib) * maps it to concrete colors. */ export type ColorScheme = 'success' | 'error' | 'warning' | 'cyan' | 'default'; /** * Map a status to a color scheme name for StatusBadge components. * Supports job/processing statuses, ClickUp task statuses, and log levels. */ export declare function getStatusColorScheme(status: string): ColorScheme; //# sourceMappingURL=agent-status-message.d.ts.map