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<DraftEditorType> | undefined;
}
declare const Editor: FC<EditorProps>;
export default Editor;
