import { Plugin } from "prosemirror-state"; /** * function for image drag n drop(for tiptap) * @see https://gist.github.com/slava-vishnyakov/16076dff1a77ddaca93c4bccd4ec4521#gistcomment-3744392 */ export type UploadFn = (image: File) => Promise; export declare const uploadImagePlugin: (upload: UploadFn) => Plugin;