import { Editor } from '@tiptap/core'; import { Plugin } from '@tiptap/pm/state'; type PasteHandlerOptions = { key: string; editor: Editor; onPaste: Function; onDrop: Function; allowedMimeTypes: string[]; }; export declare function pasteAndDropHandler(options: PasteHandlerOptions): Plugin; export {};