import { ExtractPropTypes, PropType, VNode } from 'vue'; export type RadioProps = ExtractPropTypes; export declare const RADIO_PROPS: { /** * 单选框值 */ value: { type: PropType; default: string; }; /** * 单选框显示文字 */ label: PropType>; /** * 是否默认选中 */ defaultChecked: BooleanConstructor; /** * 是否禁用 */ disabled: BooleanConstructor; name: StringConstructor; };