//#region src/consoleFmt.d.ts declare const colorToCodeASCII: { red: string; green: string; yellow: string; blue: string; magenta: string; cyan: string; white: string; black: string; gray: string; brightRed: string; brightGreen: string; brightYellow: string; brightBlue: string; brightMagenta: string; brightCyan: string; brightWhite: string; }; /** @deprecated Use `styleText` from `node:util` instead. */ declare function consoleColors(color: keyof typeof colorToCodeASCII, text: string): string; /** @deprecated Use `styleText` from `node:util` instead. */ declare function bold(text: string): string; /** @deprecated Use `styleText` from `node:util` instead. */ declare function underline(text: string): string; declare const bgColorToCodeASCII: { red: string; green: string; yellow: string; blue: string; magenta: string; cyan: string; white: string; black: string; gray: string; brightRed: string; brightGreen: string; brightYellow: string; brightBlue: string; brightMagenta: string; brightCyan: string; brightWhite: string; }; /** @deprecated Use `styleText` from `node:util` instead. */ declare function bgColor(color: keyof typeof bgColorToCodeASCII, text: string): string; /** @deprecated Use `styleText` from `node:util` instead. */ declare const consoleFmt: { /** @deprecated Use `styleText` from `node:util` instead. */ color: typeof consoleColors; bold: typeof bold; underline: typeof underline; bgColor: typeof bgColor; }; //#endregion export { consoleFmt };