import type { FileWrite } from '../types.js'; export interface ApplyWritesResult { written: string[]; conflicts: string[]; } /** Apply exactly the writes shown in a plan, unless a target changed after planning. */ export declare function applyPlannedWrites(writes: readonly FileWrite[]): ApplyWritesResult; //# sourceMappingURL=planned-writes.d.ts.map