import { Node } from '@tiptap/core'; import { PluginKey } from '@tiptap/pm/state'; export declare const EXTENSION_PRIORITY_HIGHEST = 200; declare module '@tiptap/core' { interface Commands { emoji: { setEmoji: (emoji: { name: string; emoji: string; }) => ReturnType; }; } } export declare const EmojiPluginKey: PluginKey; export declare const Emoji: Node;