import { IndexMap } from '../../../translations'; /** * Map from physical index to another index. */ declare class LooseBindsMap extends IndexMap { /** * Initializes the loose binds map with an identity function so each row header index initially maps to itself. */ constructor(); /** * Add values to list and reorganize. * * @private * @param {number} insertionIndex Position inside the list. * @param {Array} insertedIndexes List of inserted indexes. */ insert(insertionIndex: number, insertedIndexes: number[]): void; /** * Remove values from the list and reorganize. * * @private * @param {Array} removedIndexes List of removed indexes. */ remove(removedIndexes: number[]): void; } export default LooseBindsMap;