import * as RadioGroupPrimitive from '@radix-ui/react-radio-group'; import type * as React from 'react'; export interface RadioGroupItemComponents { RadioGroupItem?: React.ComponentType & { indicator?: React.ReactNode; }>; RadioGroupIndicator?: React.ComponentType>; } interface RadioGroupProps extends React.ComponentPropsWithoutRef { className?: string; } declare const RadioGroup: { ({ className, ...props }: RadioGroupProps): import("react/jsx-runtime").JSX.Element; displayName: string | undefined; }; interface RadioGroupItemProps extends React.ComponentPropsWithoutRef { indicator?: React.ReactNode; components?: Partial; className?: string; } declare const RadioGroupItem: { ({ className, indicator, components, ...props }: RadioGroupItemProps): import("react/jsx-runtime").JSX.Element; displayName: string | undefined; }; export { RadioGroup, RadioGroupItem }; //# sourceMappingURL=radio-group.d.ts.map