/** * Semantic color helpers for CLI output. * * Provides a consistent color vocabulary across the CLI. All output coloring * should use these helpers instead of raw ANSI codes. */ /** Color successful status text. */ export declare const success: (text: string) => string; /** Color error status text. */ export declare const error: (text: string) => string; /** Color warning status text. */ export declare const warning: (text: string) => string; /** Color informational status text. */ export declare const info: (text: string) => string; /** Apply heading emphasis. */ export declare const header: (text: string) => string; /** Dim less-important text. */ export declare const muted: (text: string) => string; /** Apply bold emphasis. */ export declare const bold: (text: string) => string; /** Status symbols for resource results. */ export declare const STATUS_SYMBOLS: Record; /** Get the status symbol for a resource status. */ export declare function statusSymbol(status: string): string; /** Strip ANSI escape sequences from text. */ export declare function stripAnsi(text: string): string; /** Color text based on resource status. */ export declare function statusColor(text: string, status: string): string; //# sourceMappingURL=colors.d.ts.map