/** * File-based logging utility for MCP server */ declare class Logger { private formatMessage; private writeLog; info(message: string): void; error(message: string): void; debug(message: string): void; warn(message: string): void; clear(): void; getLogPath(): string; } export declare const logger: Logger; export {}; //# sourceMappingURL=logger.d.ts.map