export interface PlannedFileChange { filePath: string; before: string; after: string; } export interface FixVerification { ok: boolean; evidence: string; } export declare const applyVerifiedFixTransaction: ({ changes, verify, }: { changes: PlannedFileChange[]; verify: () => Promise; }) => Promise<{ committed: boolean; evidence: string; }>;