import type Parser from 'web-tree-sitter';
/**
 *  Computes a single minimal change region ({@link Parser.Edit}) that contains all modifications.
 *  @param oldContent - The original content.
 *  @param newContent - The changed content.
 */
export declare function computeEditRegion(oldContent: string, newContent: string): Parser.Edit;
