import { Change } from '../Table'; import { InfiniteScrollChangeEvent } from '../InfiniteScrollTable/types'; import * as React from "react"; export type Groups = { [key: string]: string[]; }; export interface SecondaryTableControlsRowProps { groups: Groups | null; onChange?: Change; infiniteScrollData?: InfiniteScrollChangeEvent; intialRowTotal?: number; hasExternalFilters?: boolean; getCustomIcon?: (title: string) => React.ReactNode | null; filteredResultsCount?: number; } declare const SecondaryTableControlsRow: ({ groups, onChange, infiniteScrollData, intialRowTotal, hasExternalFilters, getCustomIcon, filteredResultsCount, }: SecondaryTableControlsRowProps) => import("react/jsx-runtime").JSX.Element; export default SecondaryTableControlsRow;