import { PluginKey } from '@tiptap/pm/state'; import { Extension } from '@tiptap/core'; export declare const HighlightParagraphKey: PluginKey; declare module '@tiptap/core' { interface Commands { 'highlight-paragraph': { /** * @description Set search term in extension. */ setHighlightParagraph: (pos: any) => ReturnType; /** * @description Set replace term in extension. */ clearHighlightParagraph: () => ReturnType; }; } } export declare const HighlightParagraph: Extension;