import { default as React } from 'react'; import { Control, FieldValues } from 'react-hook-form'; export interface DynamicTextEditorProps { formControl: Control; name: string; placeholder: string; fieldArrayName: string; } declare const DyanmicTextEditor: React.FC; export default DyanmicTextEditor;