declare const colorCode: { thin: string; invert: string; black: string; red: string; green: string; yellow: string; blue: string; magenta: string; cyan: string; white: string; }; export declare const color: { [P in keyof typeof colorCode]: (msg: string) => string; }; export declare function clearColor(msg: string): string; export {};