import type { FC, RefObject } from 'react'; import type { EditorProps as DraftEditorProps, Editor as DraftEditorType } from 'draft-js'; import './styles/main.css'; export interface EditorProps extends DraftEditorProps { rtlPlaceholder?: boolean; editorRef?: RefObject | undefined; } declare const Editor: FC; export default Editor;