export declare type LoggerConfig = { level?: LogLevel; exclude?: string[]; }; export declare enum LogLevel { Debug = "debug" } export declare class Logger { static config: LoggerConfig; private static log; static debug(...args: any[]): void; }