/// import AntRadio, { RadioProps as AntRadioProps } from 'antd/es/radio'; interface RadioProps extends AntRadioProps { } declare const InternalRadio: import("react").ForwardRefExoticComponent>; declare type InternalRadioType = typeof InternalRadio; interface RadioInterface extends InternalRadioType { Button: typeof AntRadio.Button; Group: typeof AntRadio.Group; } declare const Radio: RadioInterface; export default Radio;