import * as React from 'react'; import { IGridProps } from '../index'; export interface IProps extends Pick, 'virtualized' | 'buffer' | 'rowHeight' | 'limit' | 'data' | 'dynamicHeight'> { visible: number; tableIndex: number; rowFunc: any; heightToBeCalculated: { current: number[]; }; heightCache: { current: number[]; }; rowRefs: { current: any[]; }; positionCache: { current: number[]; }; lastRowPosition: { current: number; }; } declare const func: ({ virtualized, buffer, limit, visible, rowHeight, data, heightToBeCalculated, dynamicHeight, tableIndex, heightCache, rowRefs, positionCache, lastRowPosition, rowFunc, }: IProps) => React.ReactNode[]; export default func;