import { getDecreasedIndexes, getIncreasedIndexes } from './actionsOnIndexes'; import { getListWithInsertedItems as sequenceStrategyInsert, getListWithRemovedItems as sequenceStrategyRemove } from './indexesSequence'; import { getListWithInsertedItems as physicalStrategyInsert, getListWithRemovedItems as physicalStrategyRemove } from './physicallyIndexed'; declare const alterUtilsFactory: (indexationStrategy: string) => { getListWithInsertedItems: typeof sequenceStrategyInsert; getListWithRemovedItems: typeof sequenceStrategyRemove; } | { getListWithInsertedItems: typeof physicalStrategyInsert; getListWithRemovedItems: typeof physicalStrategyRemove; } | undefined; export { getDecreasedIndexes, getIncreasedIndexes, alterUtilsFactory };