export declare const prefix = "\u001B["; export declare const colors: { black: string; red: string; green: string; yellow: string; blue: string; purple: string; cyan: string; white: string; blackBold: string; redBold: string; greenBold: string; yellowBold: string; blueBold: string; purpleBold: string; cyanBold: string; whiteBold: string; blackItalic: string; redItalic: string; greenItalic: string; yellowItalic: string; blueItalic: string; purpleItalic: string; cyanItalic: string; whiteItalic: string; blackUnderscore: string; redUnderscore: string; greenUnderscore: string; yellowUnderscore: string; blueUnderscore: string; purpleUnderscore: string; cyanUnderscore: string; whiteUnderscore: string; }; export declare const resetAll = "\u001B[0m"; export default function compileColor(str: string): string;