import { ForwardRefExoticComponent } from 'react';
import Group, { RadioGroupProps } from './group';
import Radio, { RadioProps } from './radio';
import './styles/index.scss';
export interface RadioComponent extends ForwardRefExoticComponent<RadioProps> {
    Group: typeof Group;
}
declare const ExpandedRadio: RadioComponent;
export { Radio, Group, RadioProps, RadioGroupProps };
export default ExpandedRadio;
