import { Block, LineChange } from "./types.js"; //#region src/docReview/mapChangedLinesToBlocks.d.ts /** * Map a set of changed line numbers onto the indexes of the blocks that contain * them. * * @param blocks - The ordered blocks of the base document. * @param changedLines - 1-based line numbers that changed in the base document. * @returns The set of block indexes touched by at least one changed line. */ export declare const mapChangedLinesToBlocks: (blocks: Block[], changedLines: LineChange[]) => Set; //#endregion //# sourceMappingURL=mapChangedLinesToBlocks.d.ts.map