export declare const CONSOLE_COLOR_CODES: { readonly reset: "\u001B[0m"; readonly black: "\u001B[30m"; readonly red: "\u001B[31m"; readonly green: "\u001B[32m"; readonly yellow: "\u001B[33m"; readonly blue: "\u001B[34m"; readonly magenta: "\u001B[35m"; readonly cyan: "\u001B[36m"; readonly white: "\u001B[37m"; readonly gray: "\u001B[90m"; readonly bgBlack: "\u001B[40m"; readonly bgRed: "\u001B[41m"; readonly bgGreen: "\u001B[42m"; readonly bgYellow: "\u001B[43m"; readonly bgBlue: "\u001B[44m"; readonly bgMagenta: "\u001B[45m"; readonly bgCyan: "\u001B[46m"; readonly bgWhite: "\u001B[47m"; readonly bold: "\u001B[1m"; readonly dim: "\u001B[2m"; readonly italic: "\u001B[3m"; readonly underline: "\u001B[4m"; }; export declare const hex: (hexColor: string) => (str: string) => string; export declare const color: (colorName: keyof typeof CONSOLE_COLOR_CODES) => (str: string) => string; export declare const r: (str: string) => string; export declare const g: (str: string) => string; export declare const y: (str: string) => string; export declare const b: (str: string) => string; export declare const m: (str: string) => string; export declare const c: (str: string) => string; export declare const gr: (str: string) => string; export declare const dim: (str: string) => string; export declare const o: (str: string) => string;