type __VLS_Props = { /** * 标签文本 */ label?: string; /** * 列的数量 * * @default 1 */ span?: number; /** * 自定义标签类名 */ labelClassName?: string; /** * 自定义内容类名 */ contentClassName?: string; /** * 自定义标签样式 */ labelStyle?: Record; /** * 自定义内容样式 */ contentStyle?: Record; }; declare var __VLS_1: {}, __VLS_3: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_1) => any; } & { label?: (props: typeof __VLS_3) => 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; }; };