import { Logger } from './logging.js'; export declare function strToLevel(levelStr: any): 1 | 2 | 3 | 4 | 5 | 6; export declare class ConsoleLogger implements Logger { minLevel: number; constructor(minLevel?: number); log(level: number, info: any, msg?: string): void; fatal(info: any, msg?: string): void; error(info: any, msg?: string): void; warn(info: any, msg?: string): void; info(info: any, msg?: string): void; debug(info: any, msg?: string): void; trace(info: any, msg?: string): void; static get providerName(): string; } export declare function getLogger(): Promise;