export interface SecurityConfiguration {
    csrfTokenName?: string;
    xssProtection?: boolean;
    frameOptions?: "DENY" | "SAMEORIGIN";
    contentSecurityPolicy?: string;
    hsts?: boolean;
    rateLimit?: {
        windowMs: number;
        max: number;
        whitelist?: string[];
    };
}
