///
import type { ThemeUtilsCSS } from '@fuel-ui/css';
import * as RadioGroupPrimitive from '@radix-ui/react-radio-group';
import { RadioGroupItem } from './RadioGroupItem';
export type RadioGroupProps = RadioGroupPrimitive.RadioGroupProps & {
gap?: ThemeUtilsCSS['gap'];
direction?: 'row' | 'column';
isDisabled?: boolean;
isReadOnly?: boolean;
};
type ObjProps = {
id: string;
Item: typeof RadioGroupItem;
};
export declare const RadioGroup: import("react").ForwardRefExoticComponent<{
[index: `data-${string}`]: unknown;
as?: any;
css?: ThemeUtilsCSS | undefined;
className?: string | undefined;
children?: import("react").ReactNode;
} & RadioGroupPrimitive.RadioGroupProps & {
gap?: ThemeUtilsCSS['gap'];
direction?: "column" | "row" | undefined;
isDisabled?: boolean | undefined;
isReadOnly?: boolean | undefined;
} & import("react").RefAttributes> & ObjProps;
export {};