import RadioGroup from './radio'; import RadioButton from './radio-button'; import { RadioValue } from './type'; export declare type RadioButtonInstance = InstanceType; export declare type RadioGroupInstance = InstanceType & { handleRadioChange: (value: RadioValue, context: { e: Event; }) => void; };