import * as React from 'react'; import { Context } from 'radix-ui/internal'; import { RadioGroup as RadioGroupPrimitive } from 'radix-ui'; import { radioGroupRootPropDefs } from './radio-group.props.js'; import type { ComponentPropsWithout, RemovedProps } from '../helpers/component-props.js'; import type { MarginProps } from '../props/margin.props.js'; import type { GetPropDefTypes } from '../props/prop-def.js'; type RadioGroupRootOwnProps = GetPropDefTypes; interface RadioGroupRootProps extends ComponentPropsWithout, MarginProps, RadioGroupRootOwnProps { } declare const RadioGroupRoot: React.ForwardRefExoticComponent>; interface RadioGroupItemProps extends ComponentPropsWithout, MarginProps { } declare const RadioGroupItem: React.ForwardRefExoticComponent>; interface RadioGroupItemRadioProps extends React.ComponentPropsWithoutRef { } declare const RadioGroupItemRadio: React.ForwardRefExoticComponent>; export { RadioGroupRoot as Root, RadioGroupItem as Item }; export type { RadioGroupRootProps as RootProps, RadioGroupItemProps as ItemProps }; //# sourceMappingURL=radio-group.d.ts.map