export declare class Logger { private static verbose; static setVerbose(enabled: boolean): void; static info(message: string): void; static error(message: string): void; static warn(message: string): void; static debug(message: string): void; static success(message: string): void; }