export declare function getLogger(mod: string): { debug: (str: string, ...args: any) => void; error: (str: string, ...args: any) => void; _log: typeof _log; }; declare function _log(str: any, ...args: any): void; export declare enum LogLevel { Trace = 0, Debug = 1, Info = 2, Warning = 3, Error = 4 } export declare function setupLogLevel(): void; export {}; //# sourceMappingURL=logging.d.ts.map