import { AiEditorRuntime } from "./http.js"; import { IncomingMessage, ServerResponse } from "node:http"; //#region src/ai-editor/mcp.d.ts /** Stateless Streamable HTTP keeps every tool on the same revision authority as the browser. */ declare function createAiMcpMiddleware(runtime: AiEditorRuntime): (req: IncomingMessage, res: ServerResponse, next: (error?: unknown) => void) => Promise; //#endregion export { createAiMcpMiddleware }; //# sourceMappingURL=mcp.d.ts.map