export { type CsrfProtectionOptions, createCsrfProtection, } from "@getstrata/core/http/csrfProtection"; export interface ParsedForm { fields: Record; files: Record; } export declare function parseFormBody(request: Request): Promise;