import { RadioGroupItemProps as RadixRadioGroupItemProps } from '@radix-ui/react-radio-group'; interface RadioGroupItemProps extends Omit { /** * The value of the radio group item. */ value: string; /** * When true, prevents the user from interacting with the radio item. */ disabled?: boolean; } declare const RadioGroupItem: import('react').ForwardRefExoticComponent>; export { RadioGroupItem }; export type { RadioGroupItemProps };