/** * Simple logger utility */ declare class Logger { private level; constructor(); private shouldLog; private formatMessage; private log; debug(message: string, ...args: any[]): void; info(message: string, ...args: any[]): void; warn(message: string, ...args: any[]): void; error(message: string, error?: Error | any, ...args: any[]): void; } export declare const logger: Logger; export {}; //# sourceMappingURL=logger.d.ts.map