/** * Helper method that determines when to recalculate row or column metadata. */ interface Params { cellCount: number; cellSize?: number; computeMetadataCallback: (props: T) => void; computeMetadataCallbackProps: T; nextCellsCount: number; nextCellSize?: number; nextScrollToIndex: number; scrollToIndex: number; updateScrollOffsetForScrollToIndex: () => void; } /** * */ export default function calculateSizeAndPositionDataAndUpdateScrollOffset({ cellCount, cellSize, computeMetadataCallback, computeMetadataCallbackProps, nextCellsCount, nextCellSize, nextScrollToIndex, scrollToIndex, updateScrollOffsetForScrollToIndex }: Params): void; export {}; //# sourceMappingURL=calculateSizeAndPositionDataAndUpdateScrollOffset.d.ts.map