export declare class Logger { static debugColor: string; static errorColor: string; static debug(...args: any[]): void; static error(...args: any[]): void; static defaultStyle: string; static colorList: string[]; static twoStage(config: { name: string; color?: string; }[]): void; }