import InternalRadio from './Radio'; import Group from './Group'; export type { RadioProps } from './Radio'; export type { RadioGroupProps } from './Group'; export type { RadioOptionType } from './context'; declare type RadioType = typeof InternalRadio; interface RadioProps extends RadioType { Group: typeof Group; __ANT_CHECKBOX: boolean; } export declare const Radio: RadioProps; export default Radio;