UNPKG

z-react-dynamic-form

Version:

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

12 lines (11 loc) 388 B
import React from "react"; import { ControllerRenderProps } from "react-hook-form"; import { z } from "zod"; import { Controller } from "../../types"; type RangeDatePickerProps = { field: ControllerRenderProps<z.TypeOf<any>, any>; controller?: Controller; onClose?: () => void; }; declare const RangeDatePicker: React.FC<RangeDatePickerProps>; export default RangeDatePicker;