import type { ComponentPropsWithoutRef } from 'react'; type RadioGroupItemProps = Omit, 'checked' | 'defaultChecked' | 'name' | 'onChange' | 'type'> & { label?: string; value: string; }; declare function RadioGroupItem({ className, disabled, id, label, value, ...props }: RadioGroupItemProps): import("react/jsx-runtime").JSX.Element; export type { RadioGroupItemProps }; export default RadioGroupItem;