import { BaseRule, FileContent, SecurityIssue } from '../types';
export declare class CsrfProtectionRule extends BaseRule {
    readonly name = "csrf-protection";
    readonly description = "Detects missing CSRF protection and unsafe cookie configurations";
    readonly severity: "high";
    private readonly csrfPatterns;
    private readonly cookiePatterns;
    private readonly safePatterns;
    check(fileContent: FileContent): SecurityIssue[];
    private hasSafePatterns;
    private isCommentOrTest;
    private isDevelopmentContext;
}
//# sourceMappingURL=csrf-protection.d.ts.map