/** * Util functions used to update positions when an item changes the height dynamically */ import { Cache } from './Cache'; import { Position } from './types'; declare function recalcHeights({ items, changedItem, newHeight, positionStore, measurementStore, }: { items: ReadonlyArray; changedItem: T; newHeight: number; positionStore: Cache; measurementStore: Cache; }): boolean; export default recalcHeights;