import React from 'react'; import { EditorState, EditorProps as DraftEditorProps } from 'draft-js'; export interface EditorProps extends Omit { className?: string; keyCommands?: string[]; keyBinding?: string[]; onChange?(html: string): void; onClick?: (event: any, editorState: EditorState | undefined) => void; } declare const Editor: React.ForwardRefExoticComponent>; export default Editor;