z-react-dynamic-form
Version:
A dynamic form builder for React applications with various input types and validation
14 lines (13 loc) • 502 B
TypeScript
import React from "react";
import { ControllerRenderProps, UseFormReturn } from "react-hook-form";
import { Controller } from "../../types";
interface RichTextEditorControllerProps {
field: ControllerRenderProps<any, any>;
controller: Controller;
form: UseFormReturn<any, any, undefined>;
}
/**
* RichTextEditorController - Wrapper for rich text editor component
*/
declare const RichTextEditorController: React.FC<RichTextEditorControllerProps>;
export default RichTextEditorController;