import type { FileEdit } from '../types/index.js'; /** * Apply a list of file edits atomically * Either all edits succeed or none are applied */ export declare function applyEdits(edits: FileEdit[]): Promise; /** * Move a file from oldPath to newPath * Creates parent directories if needed */ export declare function moveFile(oldPath: string, newPath: string): Promise; /** * Apply edits and move a file atomically * This is the main operation for the moveFile tool */ export declare function applyEditsAndMoveFile(edits: FileEdit[], oldPath: string, newPath: string): Promise; //# sourceMappingURL=applyEdits.d.ts.map