import type { ExtractPropTypes } from 'vue'; import type Radio from './radio.vue'; export declare const radioPropsBase: { size: { readonly type: import("vue").PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; disabled: BooleanConstructor; label: import("element-plus/es/utils").EpPropFinalized<(BooleanConstructor | StringConstructor | NumberConstructor)[], unknown, unknown, string, boolean>; }; export declare const radioProps: { readonly modelValue: import("element-plus/es/utils").EpPropFinalized; readonly name: import("element-plus/es/utils").EpPropFinalized; readonly border: BooleanConstructor; readonly size: { readonly type: import("vue").PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly disabled: BooleanConstructor; readonly label: import("element-plus/es/utils").EpPropFinalized<(BooleanConstructor | StringConstructor | NumberConstructor)[], unknown, unknown, string, boolean>; }; export declare const radioEmits: { "update:modelValue": (val: string | number | boolean) => boolean; change: (val: string | number | boolean) => boolean; }; export declare type RadioProps = ExtractPropTypes; export declare type RadioEmits = typeof radioEmits; export declare type RadioInstance = InstanceType;