export declare enum TerminalColor {
    BLACK = 0,
    RED = 1,
    GREEN = 2,
    YELLOW = 3,
    BLUE = 4,
    MAGENTA = 5,
    CYAN = 6,
    WHITE = 7,
    GRAY = 60
}
export declare function colorize(text: string, foreground: TerminalColor, background?: TerminalColor): string;
