import { Plugin, PluginKey } from 'prosemirror-state'; import { JSONContent } from '@tiptap/core'; export declare const diffPluginKey: PluginKey; export declare function createDiffPlugin(baseDocJSON: JSONContent, updatedDocJSON: JSONContent): Plugin<{ baseContent: JSONContent; content: JSONContent; }>;