import type { SecurityRule } from "../data/rules/types.js"; export interface VerifyResult { ruleId: string; status: "fixed" | "still_vulnerable" | "new_issues"; details: string; remainingFindings: Array<{ id: string; name: string; severity: string; line: number; }>; } /** * Verify that a specific security fix was applied correctly. * Re-scans the code and checks if the target rule is resolved. */ export declare function verifyFix(code: string, language: string, ruleId: string, filePath?: string, rules?: SecurityRule[]): VerifyResult;