import type { RadioGroupProps } from './radio-group'; import type { ExtractPropTypes, InjectionKey } from 'vue'; import type Radio from './radio.vue'; export declare const radioPropsBase: { size: { readonly type: _vue_runtime_core.PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; disabled: BooleanConstructor; label: import("@element-plus-next/vue-utils").EpPropFinalized<(NumberConstructor | StringConstructor | BooleanConstructor)[], unknown, unknown, string, boolean>; }; export declare const radioProps: { readonly modelValue: import("@element-plus-next/vue-utils").EpPropFinalized; readonly name: import("@element-plus-next/vue-utils").EpPropFinalized; readonly border: BooleanConstructor; readonly size: { readonly type: _vue_runtime_core.PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly disabled: BooleanConstructor; readonly label: import("@element-plus-next/vue-utils").EpPropFinalized<(NumberConstructor | StringConstructor | BooleanConstructor)[], 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; export interface RadioGroupContext extends RadioGroupProps { changeEvent: (val: RadioGroupProps['modelValue']) => void; } export declare const radioGroupKey: InjectionKey;