import { type ComponentProps, type ComponentPropsWithoutRef } from 'react'; import { Checkbox } from './Checkbox'; import type { FilterListCheckboxOption } from './FilterList.types'; declare const FilterCheckboxListItem: ({ checked, option, onCheckedChange, }: { checked: ComponentProps["checked"]; option: Omit, "type">; onCheckedChange: ComponentProps["onCheckedChange"]; }) => import("react/jsx-runtime").JSX.Element; declare const FilterCheckboxList: ({ className, definition, selections, onSelectionsChange, ...props }: { className?: string; definition: Omit[]; selections: string[] | null | undefined; onSelectionsChange?: (key: string[]) => void; } & ComponentPropsWithoutRef<"div">) => import("react/jsx-runtime").JSX.Element; export { FilterCheckboxList, FilterCheckboxListItem };