type __VLS_Props = { /** 标签文本 */ label?: string; /** 字段是否必须 */ required?: boolean; /** model 的键名; 在使用了 validate、resetFields 的方法时,该属性是必填的 */ name?: string; /** 表单域验证错误时的提示信息。设置该值会导致表单验证状态变为 error,并显示该错误信息。 */ error?: string; disabled?: boolean; }; declare var __VLS_1: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_1) => any; }; declare const __VLS_base: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, { label: string; error: string; disabled: boolean; required: boolean; }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>; declare const __VLS_export: __VLS_WithSlots; declare const _default: typeof __VLS_export; export default _default; type __VLS_WithSlots = T & { new (): { $slots: S; }; };