import type { ComponentPropsWithoutRef, ReactNode } from 'react'; type RadioGroupProps = Omit, 'onChange'> & { disabled?: boolean; labelPosition?: 'left' | 'right' | 'top' | 'bottom'; onValueChange: (value: string) => void; value: string; children: ReactNode; name?: string; }; declare function RadioGroup({ children, className, disabled, labelPosition, name, onValueChange, value, ...props }: RadioGroupProps): import("react/jsx-runtime").JSX.Element; export type { RadioGroupProps }; export default RadioGroup;