/// <reference types="react" />
import { RadioProps } from "./radio";
import RadoGroup from "./radio-group";
export type { RadioProps } from "./radio";
export type { RadioGroupProps } from "./radio-group";
interface RadioInterface {
    (props: RadioProps): JSX.Element;
    Group: typeof RadoGroup;
}
declare const Radio: RadioInterface;
export default Radio;
