/** * Mandatory form hook — wraps react-hook-form + @hookform/resolvers/zod (Zod 4). */ import { type DefaultValues, type FieldValues, type UseFormReturn } from "react-hook-form"; import type { z } from "zod"; import type { UseZodFormOptionsProp } from "../props/components/form.prop.js"; export type { UseZodFormOptionsProp, UseZodFormReturnProp } from "../props/components/form.prop.js"; export declare function useZodForm(schema: z.ZodType, options?: Omit, "defaultValues"> & { defaultValues?: DefaultValues; }): UseFormReturn;