import { FormProps, UseFormReturnType } from "../types/form"; import { DynamicProps } from "../types/base"; export declare type ValidateFields = (nameList?: any[]) => Promise; declare type Props = Partial>; export declare function useForm(props?: Props): UseFormReturnType; export {};