1234567891011121314151617181920212223242526272829303132 |
- import type { ExtractPropTypes } from 'vue';
- import type Radio from './radio.vue';
- export declare const radioPropsBase: {
- size: {
- readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
- readonly required: false;
- readonly validator: ((val: unknown) => boolean) | undefined;
- __epPropKey: true;
- };
- disabled: BooleanConstructor;
- label: import("element-plus/es/utils").EpPropFinalized<(BooleanConstructor | StringConstructor | NumberConstructor)[], unknown, unknown, string, boolean>;
- };
- export declare const radioProps: {
- readonly modelValue: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor, BooleanConstructor], unknown, unknown, "", boolean>;
- readonly name: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
- readonly border: BooleanConstructor;
- readonly size: {
- readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
- readonly required: false;
- readonly validator: ((val: unknown) => boolean) | undefined;
- __epPropKey: true;
- };
- readonly disabled: BooleanConstructor;
- readonly label: import("element-plus/es/utils").EpPropFinalized<(BooleanConstructor | StringConstructor | NumberConstructor)[], 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<typeof radioProps>;
- export declare type RadioEmits = typeof radioEmits;
- export declare type RadioInstance = InstanceType<typeof Radio>;
|