import * as _fluxstack_config from '@fluxstack/config'; /** * CSRF Protection Plugin Configuration * Uses @fluxstack/config declarative config system */ declare const csrfConfig: _fluxstack_config.InferConfig<{ readonly enabled: _fluxstack_config.ConfigField; readonly cookieName: _fluxstack_config.ConfigField; readonly headerName: _fluxstack_config.ConfigField; readonly tokenLength: _fluxstack_config.ConfigField; readonly safeMethods: _fluxstack_config.ConfigField; readonly excludePaths: _fluxstack_config.ConfigField; readonly sameSite: _fluxstack_config.ConfigField<"strict" | "lax" | "none">; readonly secure: _fluxstack_config.ConfigField; readonly path: _fluxstack_config.ConfigField; }>; type CsrfConfig = typeof csrfConfig; export { type CsrfConfig, csrfConfig, csrfConfig as default };