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