UNPKG

element-plus

Version:

A Component Library for Vue 3

15 lines (14 loc) 1.05 kB
import type { ExtractPropTypes } from '@vue/runtime-core'; export declare const radioGroupProps: { readonly modelValue: import("element-plus/es/utils/props").BuildPropReturn<readonly [StringConstructor, NumberConstructor, BooleanConstructor], "", unknown, unknown, unknown>; readonly fill: import("element-plus/es/utils/props").BuildPropReturn<StringConstructor, "", unknown, unknown, unknown>; readonly textColor: import("element-plus/es/utils/props").BuildPropReturn<StringConstructor, "", unknown, unknown, unknown>; readonly size: import("element-plus/es/utils/props").BuildPropReturn<StringConstructor, "", unknown, "" | "small" | "large" | "medium" | "mini", unknown>; readonly disabled: BooleanConstructor; }; export declare type RadioGroupProps = ExtractPropTypes<typeof radioGroupProps>; export declare const radioGroupEmits: { "update:modelValue": (val: string | number | boolean) => boolean; change: (val: string | number | boolean) => boolean; }; export declare type RadioGroupEmits = typeof radioGroupEmits;