/** * Simple ANSI color utilities for CLI output * No external dependencies - uses standard ANSI escape codes */ export declare const bold: (s: string) => string; export declare const dim: (s: string) => string; export declare const red: (s: string) => string; export declare const green: (s: string) => string; export declare const yellow: (s: string) => string; export declare const blue: (s: string) => string; export declare const magenta: (s: string) => string; export declare const cyan: (s: string) => string; export declare const gray: (s: string) => string; //# sourceMappingURL=colors.d.ts.map