import * as React from 'react'; import * as RadioButtonPrimitive from '@radix-ui/react-radio-group'; import { LabelProps } from '../Label'; export type RadioButtonItemClassnames = { box?: string; label?: string; }; export interface RadioButtonProps extends Omit, 'onValueChange' | 'onChange'> { onChange?: React.ComponentPropsWithoutRef['onValueChange']; } declare const RadioButton: React.ForwardRefExoticComponent>; export interface RadioButtonItemProps extends React.ComponentPropsWithoutRef { label?: React.ReactNode; onLabelClick?: LabelProps['onClick']; classNames?: RadioButtonItemClassnames; } declare const RadioButtonItem: React.ForwardRefExoticComponent>; export { RadioButton, RadioButtonItem };