/// import type { ThemeUtilsCSS } from '@fuel-ui/css'; import * as RadioGroupPrimitive from '@radix-ui/react-radio-group'; export type RadioGroupItemProps = RadioGroupPrimitive.RadioGroupItemProps & { label: string; isDisabled?: boolean; isReadOnly?: boolean; labelClassName?: string; labelCSS?: ThemeUtilsCSS; }; type ObjProps = { id: string; }; export declare const RadioGroupItem: import("react").ForwardRefExoticComponent<(Omit, "children"> | Omit, "as">) & import("react").RefAttributes> & ObjProps; export {};