export declare class Logger {
    private verbose;
    constructor(verbose?: boolean);
    info(message: string): void;
    warn(message: string): void;
    error(message: string): void;
    debug(message: string): void;
    progress(current: number, total: number, message?: string): void;
    private createProgressBar;
}
