UNPKG

element-plus

Version:

A Component Library for Vue 3

20 lines (19 loc) 1.51 kB
import type { ExtractPropTypes } from '@vue/runtime-core'; import type RadioGroup from './radio-group.vue'; export declare const radioGroupProps: { readonly id: import("element-plus/es/utils").BuildPropReturn<StringConstructor, undefined, unknown, unknown, unknown>; readonly size: import("element-plus/es/utils").BuildPropReturn<StringConstructor, never, false, "" | "default" | "small" | "large", never>; readonly disabled: BooleanConstructor; readonly modelValue: import("element-plus/es/utils").BuildPropReturn<readonly [StringConstructor, NumberConstructor, BooleanConstructor], "", unknown, unknown, unknown>; readonly fill: import("element-plus/es/utils").BuildPropReturn<StringConstructor, "", unknown, unknown, unknown>; readonly label: import("element-plus/es/utils").BuildPropReturn<StringConstructor, undefined, unknown, unknown, unknown>; readonly textColor: import("element-plus/es/utils").BuildPropReturn<StringConstructor, "", unknown, unknown, unknown>; readonly name: import("element-plus/es/utils").BuildPropReturn<StringConstructor, undefined, unknown, unknown, unknown>; }; 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; export declare type RadioGroupInstance = InstanceType<typeof RadioGroup>;