import { type UseFormProps, type UseFormReturn } from "react-hook-form"; import { type ZodType, z } from "zod"; export declare function useZodForm>(props: Omit>, "resolver"> & { schema: TSchema; }): UseFormReturn>;