import * as React from "react"; import { Controller, useController, useFieldArray, useForm, useFormContext, useFormState, useWatch, type Control, type ControllerFieldState, type ControllerProps, type ControllerRenderProps, type DefaultValues, type FieldError, type FieldErrors, type FieldPath, type FieldValues, type Path, type RegisterOptions, type Resolver, type SubmitHandler, type UseControllerReturn, type UseFieldArrayReturn, type UseFormReturn } from "react-hook-form"; /** * Provides the `react-hook-form` context to nested form primitives. * * @remarks * - Renders the `FormProvider` component from `react-hook-form` * - Built on `react-hook-form` * * @example * ```tsx *
* * ``` * * @see {@link https://react-hook-form.com/docs/formprovider | React Hook Form FormProvider Docs} */ declare const Form: (