export default class Logger {
    verbose: Boolean;
    constructor(verbose?: Boolean);
    log(msg: string): void;
    info(msg: string, after?: string): void;
    warn(msg: string, after?: string): void;
    error(msg: string, after?: string): void;
}
