import type { PathParams } from "./types/pathParams.js"; import type { RequestContext } from "./types/requestContext.js"; /** * Create a RequestContext for a given request and params. * * Centralises context construction so that body helpers (`json`, `text`, * `formData`) are available everywhere a `RequestContext` is built — * including 404/405 handler contexts. * * @internal */ export declare function createRequestContext(request: Request, params: PathParams, query: URLSearchParams): RequestContext; //# sourceMappingURL=context.d.ts.map