import { type ControlGroupCaptionProps, type ControlGroupLabelProps, type ControlGroupProps, type ControlGroupValidationProps } from '../ControlGroup'; export type RadioGroupProps = ControlGroupProps; export type RadioGroupLabelProps = ControlGroupLabelProps; export type RadioGroupCaptionProps = ControlGroupCaptionProps; export type RadioGroupValidationProps = ControlGroupValidationProps; export declare const RadioGroup: import("react").ForwardRefExoticComponent> & { Label: import("react").ForwardRefExoticComponent<{ visuallyHidden?: boolean; } & import("react").HTMLAttributes & import("react").RefAttributes>; Caption: import("react").ForwardRefExoticComponent>; Validation: import("react").ForwardRefExoticComponent<{ variant: import("..").FormValidationStatus; } & import("react").HTMLAttributes & import("react").RefAttributes>; };