import React from 'react'; import { IToolbarConfig, IEditorConfig } from '@wangeditor/editor'; import '@wangeditor/editor/dist/css/style.css'; export interface IRichTextEditorProps { className?: string; style?: React.CSSProperties; height: number; toolbarConfig: Partial; editorConfig: Partial; onChange: (html: string) => void; value?: string; } export declare function RichTextEditor(props: IRichTextEditorProps): JSX.Element;