export declare class Logger { private static logLevel; private static shouldDebugLog; private static shouldWarnLog; private static shouldErrorLog; static logDbg(...args: any): void; static logWarn(...args: any): void; static logError(...args: any): void; static setLogLevel(logLevel: string): void; }