type LogLevel = 'debug' | 'info' | 'warn' | 'error'; interface LoggerConfig { enabled: boolean; level: LogLevel; prefix?: string; } export declare function setLoggerConfig(config: Partial): void; export declare function getLoggerConfig(): LoggerConfig; export declare const logger: { debug: (...args: any[]) => void; info: (...args: any[]) => void; warn: (...args: any[]) => void; error: (...args: any[]) => void; }; export {}; //# sourceMappingURL=logger.d.ts.map