import { BubbleMenuPluginProps } from '@tiptap/extension-bubble-menu'; import React from 'react'; import { FloatingMenuPluginProps } from '@tiptap/extension-floating-menu'; type Optional$1 = Pick, K> & Omit; type BubbleMenuProps = Optional$1, 'element'>, 'editor'> & React.HTMLAttributes; declare const BubbleMenu: React.ForwardRefExoticComponent, "element">>, "editor"> & Omit, "element">, "editor"> & React.HTMLAttributes & React.RefAttributes>; type Optional = Pick, K> & Omit; type FloatingMenuProps = Omit, 'element' | 'editor'> & { editor: FloatingMenuPluginProps['editor'] | null; options?: FloatingMenuPluginProps['options']; } & React.HTMLAttributes; declare const FloatingMenu: React.ForwardRefExoticComponent, "editor" | "element"> & { editor: FloatingMenuPluginProps["editor"] | null; options?: FloatingMenuPluginProps["options"]; } & React.HTMLAttributes & React.RefAttributes>; export { BubbleMenu, type BubbleMenuProps, FloatingMenu, type FloatingMenuProps };