import type { FieldValues, UseFormProps, UseFormReturn } from './types'; /** * Core hook for managing a form. Returns all methods and state for * registration, validation, and submission. * * @see [API](https://react-hook-form.com/docs/useform) * * @example * ```tsx * const { register, handleSubmit, formState: { errors } } = useForm(); *
* *
* ``` */ export declare function useForm(props?: UseFormProps): UseFormReturn; //# sourceMappingURL=useForm.d.ts.map