import type { IncomingMessage, ServerResponse } from "http"; import type { EventEmitter } from "node:events"; import type { FauxFoundry } from "@osdk/faux"; import { msw } from "@osdk/faux"; import type { Connect } from "vite"; export declare function routeConnectToMsw(baseUrl: string, handlers: FauxFoundry["handlers"], emitter: EventEmitter, req: Connect.IncomingMessage, res: ServerResponse, next: Connect.NextFunction): Promise;