import type { TestFunction } from 'yup'; export declare function useIsValidating(fieldName?: string): import("vue").Ref; /** * 对于复杂组件, 通过 DaoFormItemValidate 进行联合校验(ex: DaoMultiRowEditor) * componentRef 指向的组件,需要提供校验函数 validate: () => Promise */ export default function useValidateComponent(fieldName?: string): { componentRef: import("vue").Ref; componentYup: TestFunction; };