import React from 'react'; import { FiltersMap } from '@wix/bex-core'; import { CollectionTableWSRTableBaseProps } from '../CollectionTable/CollectionTableWSRTable'; import { CollectionTableActionCellProps } from '../CollectionTable/CollectionTableBaseCommonProps'; import { NestedTableItem, NestedTableState } from '../../state'; import { NestedTableFlatDataItem } from '../../state/NestedTableState/NestedTableFlatModeSectionState'; import { TopNotificationBasicRenderProp } from '../TableTopNotification'; import { NestedTableDragAndDrop } from '../NestedTableDragAndDrop/NestedTableDragAndDrop'; import { CollectionToolbarFiltersElement } from '../assertComponentType'; export interface NestedTableWSRTableBaseProps extends Omit | NestedTableFlatDataItem, T, F>, 'actionCell' | 'sticky' | 'selectionDisabled' | 'topNotification'>, CollectionTableActionCellProps { } export interface NestedTableWSRTableProps extends NestedTableWSRTableBaseProps { dataHook?: string; state: NestedTableState; topNotification?: TopNotificationBasicRenderProp; rowHeight?: number; estimatedRowHeight?: number; dragAndDrop?: typeof NestedTableDragAndDrop; filters?: CollectionToolbarFiltersElement; } declare function _NestedTableWSRTable(props: NestedTableWSRTableProps): React.JSX.Element; export declare const NestedTableWSRTable: typeof _NestedTableWSRTable & { displayName: string; }; export {}; //# sourceMappingURL=NestedTableWSRTable.d.ts.map