type LogMethod = (...args: unknown[]) => void; export declare const logger: { debug: LogMethod; error: LogMethod; info: LogMethod; warn: LogMethod; }; export {};