import * as React from 'react'; export interface RadioGroupProps extends React.HTMLAttributes { value?: string; onValueChange?: (value: string) => void; disabled?: boolean; name?: string; } declare const RadioGroup: React.ForwardRefExoticComponent>; export interface RadioGroupItemProps extends Omit, 'type'> { value: string; } declare const RadioGroupItem: React.ForwardRefExoticComponent>; export { RadioGroup, RadioGroupItem };