import type { Slice } from '@atlaskit/editor-prosemirror/model'; import type { EditorView } from '@atlaskit/editor-prosemirror/view'; type PasteOptions = { pasteSource: string; }; export declare function handlePaste(view: EditorView, _event: ClipboardEvent, slice: Slice, options?: PasteOptions): boolean; export {};