1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
| import type Description from './description.vue';
| export declare const descriptionProps: {
| readonly border: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, false, boolean>;
| readonly column: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 3, boolean>;
| readonly direction: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "horizontal" | "vertical", unknown, "horizontal", boolean>;
| 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 title: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
| readonly extra: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "", boolean>;
| };
| export declare type DescriptionInstance = InstanceType<typeof Description>;
|
|