import type { Handler } from "../types"; export interface CsrfOptions { secret: string; cookie?: { name?: string; path?: string; secure?: boolean; httpOnly?: boolean; sameSite?: "strict" | "lax" | "none"; maxAge?: number; }; ignoreMethods?: string[]; headerName?: string; bodyField?: string; tokenLength?: number; } export declare function csrf(options: CsrfOptions): Handler; //# sourceMappingURL=csrf.d.ts.map