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