| 12345678910111213141516171819 |
- import type { ExtractPropTypes, __ExtractPublicPropTypes } from 'vue';
- import type Description from './description.vue';
- export declare const descriptionProps: {
- readonly border: BooleanConstructor;
- 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, "" | "small" | "default" | "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>;
- readonly labelWidth: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, "", boolean>;
- };
- export type DescriptionProps = ExtractPropTypes<typeof descriptionProps>;
- export type DescriptionPropsPublic = __ExtractPublicPropTypes<typeof descriptionProps>;
- export type DescriptionInstance = InstanceType<typeof Description> & unknown;
|