export declare class Logger {
    static error(scope?: string, ...args: any[]): void;
    static success(scope?: string, ...args: any[]): void;
    static info(scope?: string, ...args: any[]): void;
    static debug(scope?: string, ...args: any[]): void;
}
