import React from 'react'; import { EditorState } from 'draft-js'; interface EditorContextType { editorState: EditorState; setEditorState(editorState: EditorState): void; } declare const EditorContext: React.Context; export default EditorContext;