import React from 'react'; import { CollectionState, FiltersMap } from '@wix/bex-core'; import { TableState } from '../../state'; import { CollectionTableBaseProps } from '../CollectionTable'; import type { TableSectionsProp } from '../TableSections'; export interface TableCompatProps extends CollectionTableBaseProps { /** * A collection state instance created with [useCollection](./?path=/story/common-hooks--usecollection) * @external */ state: CollectionState | TableState; sections?: TableSectionsProp; } declare function _TableCompat(props: TableCompatProps): React.JSX.Element; export declare const TableCompat: typeof _TableCompat & { displayName: string; }; export {}; //# sourceMappingURL=TableCompat.d.ts.map