import React from 'react';
import { CheckProps } from '../common/Check';
export type RadioProps = Omit<CheckProps, 'type'>;
declare const Radio: React.FunctionComponent<RadioProps & React.RefAttributes<HTMLLabelElement>> & {
    Group: React.FC<import("./RadioGroup").RadioGroupProps>;
    Button: React.ForwardRefExoticComponent<RadioProps & React.RefAttributes<HTMLLabelElement>>;
};
export default Radio;
