import type { IncomingMessage as HttpRequest, ServerResponse } from "node:http"; import { type ParsedRoute } from "./route-helpers.js"; import type { ApiContext } from "./api.js"; /** `/api/experiments*` routes. See route-helpers.ts for the domain-module contract. */ export declare function handleExperimentsApi(req: HttpRequest, res: ServerResponse, route: ParsedRoute, context: ApiContext): Promise; //# sourceMappingURL=experiments-api.d.ts.map