import React from 'react'; import { FiltersMap } from '@wix/bex-core'; import { CollectionTableBaseProps } from '../CollectionTable'; import { TableState } from '../../state'; import { GroupBy, RenderSection, SectionEvents } from '../CollectionSectionHeader'; export interface TableSectionsProps extends CollectionTableBaseProps { groupBy: GroupBy; renderSection: RenderSection; table: TableState; collapsible?: boolean; events?: SectionEvents; } export declare const TableSections: (({ groupBy, renderSection, table, columns, rowDetails, collapsible, events, ...collectionTableProps }: TableSectionsProps) => React.JSX.Element) & { displayName: string; }; export type TableSectionsProp = { TableSections: typeof TableSections; groupBy: GroupBy; renderSection: RenderSection; collapsible?: boolean; events?: SectionEvents; }; //# sourceMappingURL=TableSections.d.ts.map