/** * Computes the smallest replacement range that turns `oldValue` into `newValue`, * trimming the common prefix and suffix so unaffected regions stay untouched. */ export declare function computeMinimalChange(oldValue: string, newValue: string): { from: number; to: number; insert: string; }; //# sourceMappingURL=compute-minimal-change.d.ts.map