/** * Debug Response Wrapper for MCP Gateway. * Wraps Fastify reply to capture and log response content in development mode. */ import type { FastifyReply } from 'fastify'; /** * Wraps Fastify reply to capture and log response content in development mode. * * @param reply - Fastify reply object to wrap * @param sessionId - Current session ID for logging */ export declare function wrapReplyForDebug(reply: FastifyReply, sessionId: string): void; //# sourceMappingURL=debug-response-wrapper.d.ts.map