import { Extension } from '@tiptap/core'; import { FloatingMenuPluginProps } from './FloatingMenuPlugin'; export type FloatingMenuOptions = Omit & { canAddFromBank?: boolean; vibecoding?: boolean; }; declare module "@tiptap/core" { interface Commands { floatingMenu: { showTip: () => ReturnType; hideTip: () => ReturnType; changeTip: (type?: boolean) => ReturnType; }; } } export declare const FloatingMenu: Extension;