UNPKG

z-react-dynamic-form

Version:

A dynamic form builder for React applications with various input types and validation

12 lines (11 loc) 403 B
import React from "react"; import { UseFormReturn } from "react-hook-form"; import { z } from "zod"; import { Controller, PropsPropsType } from "../../types"; type NormalHandlerProps = { props?: PropsPropsType; controllers?: Controller[]; form: UseFormReturn<z.TypeOf<any>, any, undefined>; }; declare const _default: React.NamedExoticComponent<NormalHandlerProps>; export default _default;