import { IndexMap } from './indexMap'; /** * Map for storing mappings from an physical index to a value. * * Does not update stored values on remove/add row or column action. * * @class PhysicalIndexToValueMap */ export declare class PhysicalIndexToValueMap extends IndexMap { /** * 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; }