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