import React, { ForwardRefExoticComponent, HTMLAttributes, ReactElement } from 'react'; import { FiltersMap, KeyedItem } from '@wix/bex-core'; import { TableSectionsState } from './TableSectionsState'; export interface TableSectionRowProps extends HTMLAttributes { rowData: KeyedItem; state: TableSectionsState; RegularTrElement: ForwardRefExoticComponent<{ children: ReactElement[]; rowData: { id: string; }; className: string; }>; } export declare const TableSectionRow: React.MemoExoticComponent & React.RefAttributes, "key" | keyof TableSectionRowProps> & React.RefAttributes>>; //# sourceMappingURL=TableSectionRow.d.ts.map