type __VLS_Props = { /** * 是否带有边框 * * @default false */ border?: boolean; /** * 一行 Descriptions Item 的数量 * * @default 3 */ column?: number; /** * 排列的方向 * * @default 'horizontal' */ direction?: "horizontal" | "vertical"; /** * 列表的尺寸 */ size?: "medium" | "small" | "mini"; /** * 标题文本,显示在左上方 */ title?: string; /** * 操作区文本,显示在右上方 */ extra?: string; /** * 是否显示冒号 * * @default true */ colon?: boolean; /** * 自定义标签类名 */ labelClassName?: string; /** * 自定义内容类名 */ contentClassName?: string; /** * 自定义标签样式 */ labelStyle?: Record; /** * 自定义内容样式 */ contentStyle?: Record; }; declare var __VLS_1: {}, __VLS_3: {}, __VLS_5: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_1) => any; } & { title?: (props: typeof __VLS_3) => any; } & { extra?: (props: typeof __VLS_5) => any; }; declare const __VLS_component: import("vue").DefineComponent<__VLS_TypePropsToOption<__VLS_Props>, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, Readonly>>, {}>; declare const _default: __VLS_WithSlots; export default _default; type __VLS_TypePropsToOption = { [K in keyof T]-?: {} extends Pick ? { type: import('vue').PropType[K]>; } : { type: import('vue').PropType; required: true; }; }; type __VLS_WithSlots = T & { new (): { $scopedSlots: S; }; };