export interface DiffParseResult { filePath?: string | undefined; diffOriginal?: string | undefined; diffUpdated?: string | undefined; } export declare function parseDiffForApply(diffText: string): DiffParseResult; export declare function applyDiffContent(fileContent: string, original: string, updated: string): { ok: true; content: string; } | { ok: false; error: string; }; //# sourceMappingURL=conversation-diff.d.ts.map