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