import { HidingMap } from './hidingMap'; import { IndexMap } from './indexMap'; import { LinkedPhysicalIndexToValueMap } from './linkedPhysicalIndexToValueMap'; import { PhysicalIndexToValueMap } from './physicalIndexToValueMap'; import { TrimmingMap } from './trimmingMap'; export * from './indexesSequence'; export * from './utils/indexesSequence'; export { HidingMap, IndexMap, LinkedPhysicalIndexToValueMap, PhysicalIndexToValueMap, TrimmingMap }; /** * Creates and returns new IndexMap instance. * * @param {string} mapType The type of the map. * @param {*} [initValueOrFn=null] Initial value or function for index map. * @returns {IndexMap} */ export declare function createIndexMap(mapType: string, initValueOrFn?: unknown): IndexMap;