import { SchemaType } from 'ph-utils/validator'; type __VLS_Props = { /** 表单数据对象 */ model?: Record; /** 标签宽度 */ labelWidth?: string; /** 验证规则 */ rules?: SchemaType[]; /** 是否行内表单 */ inline?: boolean; disabled?: boolean; labelPosition?: 'left' | 'right' | 'top'; }; /** * 校验全部表单数据 */ declare function validate(): void; /** * 校验部分表单数据 * @param field */ declare function validateField(field: string | string[]): void; declare function clearValidate(): void; declare var __VLS_1: {}; type __VLS_Slots = {} & { default?: (props: typeof __VLS_1) => any; }; declare const __VLS_base: import('vue').DefineComponent<__VLS_Props, { validate: typeof validate; validateField: typeof validateField; clearValidate: typeof clearValidate; }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, { submit: (...args: any[]) => void; }, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{ onSubmit?: ((...args: any[]) => any) | undefined; }>, { disabled: boolean; inline: boolean; labelPosition: "left" | "right" | "top"; }, {}, {}, {}, 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; }; };