import { EditorView } from 'prosemirror-view'; interface IPasteOption { plainText?: boolean; scrollIntoView?: boolean; } declare const dispatchEvent: (view: EditorView, event: Event) => void; declare const pasteContent: (view: EditorView, content: string, option: IPasteOption) => boolean; export { dispatchEvent, IPasteOption, pasteContent };