import type { ExtractPropTypes } from 'vue'; 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").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 type RadioGroupProps = ExtractPropTypes; export declare const radioGroupEmits: { "update:modelValue": (val: string | number | boolean | undefined) => val is string | number | boolean; change: (val: string | number | boolean | undefined) => val is string | number | boolean; }; export type RadioGroupEmits = typeof radioGroupEmits; export type RadioGroupInstance = InstanceType & unknown;