import { Label } from './label'; import * as RadioGroupPrimitive from '@radix-ui/react-radio-group'; import type * as React from 'react'; export interface RadioGroupItemFieldComponents { RadioGroupItem?: React.ComponentType>; RadioGroupIndicator?: React.ComponentType>; Label?: React.ComponentType>; } export interface RadioGroupItemFieldProps extends React.ComponentPropsWithoutRef { label?: React.ReactNode; labelClassName?: string; wrapperClassName?: string; components?: Partial; } declare const RadioGroupItemField: { ({ label, labelClassName, wrapperClassName, components, className, children, ...props }: RadioGroupItemFieldProps): import("react/jsx-runtime").JSX.Element; displayName: string; }; export { RadioGroupItemField }; //# sourceMappingURL=radio-group-item-field.d.ts.map