import { type ComponentPropsWithoutRef, type Dispatch, type SetStateAction } from 'react'; import type { FilterGroupListData } from './FilterList.types'; import { type FilterGroupListSelections, isFilterListGroupDef } from './FilterList.types'; declare const FilterGroupList: ({ className, data, selections, onSelectionsChange, accordionState, onAccordionStateChange, ...props }: { className?: string; data: FilterGroupListData; selections: FilterGroupListSelections | null | undefined; onSelectionsChange?: (value: FilterGroupListSelections) => void; accordionState?: string[]; onAccordionStateChange?: Dispatch>; } & ComponentPropsWithoutRef<"div">) => import("react/jsx-runtime").JSX.Element; export { FilterGroupList, type FilterGroupListData, type FilterGroupListSelections, isFilterListGroupDef, };