import type { FC } from 'react'; import { EditorProps } from 'react-draft-wysiwyg'; interface DraftEditorProps extends EditorProps { className?: string; } declare const DraftEditor: FC; export default DraftEditor;