export declare const STYLE_EOF = "\u001B[0m"; declare const basic8Color: readonly ["black", "red", "green", "yellow", "blue", "magenta", "cyan", "white"]; declare const modifier: { bold: string; italic: string; underline: string; }; declare type UnionType = T | `${T}Bright` | `bg${Capitalize}` | `bg${Capitalize}Bright` | keyof R; declare type OperateType = UnionType; interface Chalk extends Record { (...res: Array): string; } /** * 基础的chalk函数实现 */ declare const chalk: Chalk; export default chalk;