///
import { CollectionState, FiltersMap } from '@wix/bex-core';
import { CollectionTableBaseProps } from '../CollectionTable';
import { InfiniteScrollTableState } from '../../state';
export interface InfiniteScrollTableProps extends CollectionTableBaseProps {
rowHeight?: number | ((item: T, index: number) => number);
estimatedRowHeight?: number;
state: CollectionState | InfiniteScrollTableState;
isVirtual?: boolean;
}
export declare function InfiniteScrollTable(props: InfiniteScrollTableProps): JSX.Element;
export { InfiniteScrollTableProps as TableProps };
export { InfiniteScrollTable as Table };
//# sourceMappingURL=InfiniteScrollTable.d.ts.map