import { Editor } from '@tiptap/core'; import { Plugin } from '@tiptap/pm/state'; import { Handle } from './handle'; export type FloatingMenuPluginProps = { pluginKey: string; editor: Editor; tip: Handle | null; }; export declare const FloatingMenuPlugin: (options: FloatingMenuPluginProps) => Plugin;