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