import * as React from 'react'; import { C as ComponentOption } from '../index-CI-Ieo0x.js'; type RadioOption = ComponentOption; interface RadioGroupProps extends Omit, 'onChange'> { options: RadioOption[]; value?: string; onChange?: (value: string) => void; name: string; orientation?: 'horizontal' | 'vertical'; } declare const RadioGroup: React.ForwardRefExoticComponent>; export { RadioGroup, type RadioGroupProps, type RadioOption };