///
export type RadioGroupProps = React.ComponentPropsWithRef<'div'> & {
name?: string;
width?: string;
label?: React.ReactNode;
gap?: string;
error?: React.ReactNode;
disabled?: boolean;
};
export declare const RadioGroup: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;