/** * Simple color utilities for CLI output */ export declare const colors: { green: (s: string) => string; red: (s: string) => string; yellow: (s: string) => string; cyan: (s: string) => string; blue: (s: string) => string; bold: (s: string) => string; gray: (s: string) => string; }; export declare function colorizeStatus(hasKey: boolean): string;