export declare const T_RESET = "\u001B[0m"; export declare const T_BOLD = "\u001B[1m"; export declare const T_UNDERLINE = "\u001B[4m"; export declare const T_CLEAR_LINE = "\u001B[2K"; export declare const T_CLEAR_LINE_END = "\u001B[K"; export declare const T_REWRITE_LINE = "\r\u001B[1F\u001B[1F\u001B[K"; export declare const T_CLEAR_SCREEN = "\u001B[2J"; export declare const T_LINE_START = "\r"; export declare const C_RED = "\u001B[31m"; export declare const C_BLUE = "\u001B[34m"; export declare const C_LIGHT_BLUE = "\u001B[96m"; export declare const C_GREEN = "\u001B[32m"; export declare const C_GREY = "\u001B[90m"; export declare const C_ORANGE = "\u001B[38;5;208m"; export declare const C_WHITE = "\u001B[37m"; export declare const B_BLACK = "\u001B[40m"; export declare const B_RED = "\u001B[41m"; export declare const B_GREEN = "\u001B[42m"; export declare const B_YELLOW = "\u001B[43m"; export declare const B_BLUE = "\u001B[44m"; export declare const B_MAGENTA = "\u001B[45m"; export declare const B_CYAN = "\u001B[46m"; export declare const B_WHITE = "\u001B[47m"; export type TermLogger = (...args: any[]) => void; export declare function cssText(text: string, css: string): void; export declare function moveUp(n: number): string; export declare function moveDown(n: number): string; export declare function moveLeft(n: number): string; export declare function moveRight(n: number): string; export declare function goAt(x: number, y: number): string; export declare function buildWriter(...colors: any[]): (...values: any[]) => string; export declare const buildLogger: (...colors: string[]) => ((...params: any[]) => void); export declare function colorize(...params: string[]): string; export declare function consoleLogTemp(isTemp: boolean, text: string): void; export declare function askYesNo(message: string, defaultValue: boolean): Promise; export declare const logRed: (...params: any[]) => void; export declare const textRed: (...values: any[]) => string; export declare const logBgRed: (...params: any[]) => void; export declare const textBgRed: (...values: any[]) => string; export declare const logBlue: (...params: any[]) => void; export declare const textBlue: (...values: any[]) => string; export declare const logGrey: (...params: any[]) => void; export declare const textGrey: (...values: any[]) => string; export declare const logBgBlue: (...params: any[]) => void; export declare const textBgBlue: (...values: any[]) => string; export declare const logGreen: (...params: any[]) => void; export declare const textGreen: (...values: any[]) => string; export declare const logBgGreen: (...params: any[]) => void; export declare const textBgGreen: (...values: any[]) => string; export declare function indentText(spacer: string, text: string): string; export declare function logSuccess(...args: any[]): void; export declare function logError(...args: any[]): void; export declare function logWarn(...args: any[]): void;