/** * Computes which lines in the new text are changed or inserted compared to the old text. * Uses a greedy forward-matching approach to handle insertions/deletions. */ export declare function getChangedLineNumbers(oldText: string, newText: string): number[]; //# sourceMappingURL=diff-utils.d.ts.map