declare const config: { INFO: { color: string; }; WARN: { color: string; }; SUCCESS: { color: string; }; ERROR: { color: string; }; }; export declare type LogTypes = keyof typeof config; export declare class ExConsole { info(message: string): void; warn(message: string): void; error(message: string | Error, showDetail?: boolean): void; success(message: string): void; log(type: LogTypes, message: string | Error): string; center(str: string, width?: number): string; getSpaceStr(count: number): string; getDateStr(): string; } export declare const exConsole: ExConsole; export {};