import type { ExtractPropTypes } from '@vue/runtime-core'; import type RadioGroup from './radio-group.vue'; export declare const radioGroupProps: { readonly ariaLabel: StringConstructor; readonly id: import("element-plus/es/utils").EpPropFinalized; readonly size: { readonly type: import("@vue/runtime-core").PropType>; readonly required: false; readonly validator: ((val: unknown) => boolean) | undefined; __epPropKey: true; }; readonly disabled: BooleanConstructor; readonly modelValue: import("element-plus/es/utils").EpPropFinalized; readonly fill: import("element-plus/es/utils").EpPropFinalized; readonly textColor: import("element-plus/es/utils").EpPropFinalized; readonly name: import("element-plus/es/utils").EpPropFinalized; readonly validateEvent: import("element-plus/es/utils").EpPropFinalized; }; export declare type RadioGroupProps = ExtractPropTypes; export declare const radioGroupEmits: { "update:modelValue": (val: string | number | boolean | undefined) => boolean; change: (val: string | number | boolean | undefined) => boolean; }; export declare type RadioGroupEmits = typeof radioGroupEmits; export declare type RadioGroupInstance = InstanceType;