export interface FileChange { path: string; originalContent: string; newContent: string; } export type ReviewDecision = 'accept' | 'reject' | 'accept-all' | 'reject-all'; export declare function reviewChanges(changes: FileChange[], cwd: string): Promise<{ accepted: FileChange[]; rejected: FileChange[]; }>; export declare function captureFileSnapshot(paths: string[], cwd: string): Promise>; export declare function diffSnapshot(before: Map, cwd: string): Promise; //# sourceMappingURL=diff-review.d.ts.map