declare namespace colors { let enabled: boolean; } export default colors; export declare const cyan: (str: string) => string; export declare const magenta: (str: string) => string; export declare const green: (str: string) => string; export declare const grey: (str: string) => string; export declare const yellow: (str: string) => string; export declare const red: (str: string) => string; export declare const blue: (str: string) => string; export declare const bold: (str: string) => string;