///
import Group from './group';
import Button from './radio-button';
import { IRadioProps } from './interface';
export { SizeType, RadioType, RadioValueType, RadioGroupOptionType, IRadioProps, IRadioOptionType, IRadioGroupProps, IRadioGroupContextProps, } from './interface';
interface CompoundedComponent extends React.ForwardRefExoticComponent> {
Group: typeof Group;
Button: typeof Button;
}
declare const Radio: CompoundedComponent;
export { Group, Button };
export default Radio;