export declare class Logger { log(msg: string, tag?: string): void; info(msg: string, tag?: string): void; done(msg: string, tag?: string): void; warn(msg: string, tag?: string): void; error(msg: string | Error, tag?: string): void; clearConsole(title: string): void; private format; private chalkTag; } export declare const logger: Logger;