import type { FormProps, UseFormReturnType } from '../types/form'; import type { NamePath } from 'ant-design-vue/lib/form/interface'; import type { DynamicProps } from '../../../../types/utils'; export declare type ValidateFields = (nameList?: NamePath[]) => Promise; declare type Props = Partial>; export declare function useForm(props?: Props): UseFormReturnType; export {};