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