export declare class Logger {
    private static verbose;
    static setVerbose(verbose: boolean): void;
    static info(message: string, data?: any): void;
    static success(message: string, data?: any): void;
    static warn(message: string, data?: any): void;
    static error(message: string, error?: any): void;
    static debug(message: string, data?: any): void;
    static step(message: string): void;
    static complete(message: string): void;
    static fail(message: string): void;
    static skip(message: string): void;
}
//# sourceMappingURL=logger.d.ts.map