import { RadioGroup as RadioGroupPrimitive } from 'radix-ui'; import { type ComponentProps, type ComponentPropsWithoutRef } from 'react'; import type { FilterListRadioOption } from './FilterList.types'; declare const FilterRadioListItem: ({ option, }: { option: Omit, "type">; }) => import("react/jsx-runtime").JSX.Element; declare const FilterRadioList: ({ className, definition, value, onValueChange, ...props }: { className?: string; definition: Omit[]; } & Pick, "value" | "onValueChange"> & ComponentPropsWithoutRef<"div">) => import("react/jsx-runtime").JSX.Element; export { FilterRadioList, FilterRadioListItem };