import React from 'react'; import { CollectionState, FiltersMap } from '@wix/bex-core'; import { CollectionTableBaseProps } from '../CollectionTable'; import { TableState } from '../../state'; import type { TableSectionsProp } from '../TableSections'; export interface TableVirtualProps extends CollectionTableBaseProps { rowHeight?: number | ((item: T, index: number) => number); estimatedRowHeight?: number; state: CollectionState | TableState; sections?: TableSectionsProp; } declare function _TableVirtual(props: TableVirtualProps): React.JSX.Element; export declare const TableVirtual: typeof _TableVirtual & { displayName: string; }; export {}; //# sourceMappingURL=TableVirtual.d.ts.map