import type { PondoknusaRequest } from './request.js'; import type { Middleware } from './types.js'; /** Parsed form body for the current request, when the form-body cache middleware ran. */ export declare function cachedFormData(request: PondoknusaRequest): FormData | undefined; /** Parse the request body once so CSRF and validation can both read form fields. */ export declare function createFormBodyCacheMiddleware(): Middleware; //# sourceMappingURL=form-body-cache.d.ts.map