export interface ILogger { log(...msgs: string[]): void; verbose(...msgs: string[]): void; success(...msgs: string[]): void; error(...msgs: string[]): void; } export declare function createLogger(verbose?: boolean): ILogger;