import { default as React } from 'react'; import { default as ReactQuill } from 'react-quill-new'; interface QuillEditorProp { text?: string; disabled?: boolean; maxLength?: number; networkStatus: boolean; onTextSend?: (value?: string) => void; onChange?: (text: string, editor: ReactQuill.UnprivilegedEditor) => void; clearAction?: React.ReactNode; loading?: boolean; } export interface editorRefProps { clear: () => void; prevent: () => void; focus: () => void; update: (val?: string) => void; getCurrentText: () => string | undefined; } declare const QuillEditor: React.ForwardRefExoticComponent>; export default QuillEditor;