import type { Editor } from '@tiptap/core'; interface FloatingButtonProps { editor: Editor | null; tooltipText?: string; ariaLabel?: string; id?: string; class?: string; isActive?: boolean; onToggle?: (isActive: boolean) => void; } /** * [Go to docs](https://flowbite-svelte.com/docs/plugins/wysiwyg) * ## Type * FloatingButtonProps * ## Props * @prop editor * @prop tooltipText = 'Toggle floating menu' * @prop ariaLabel = 'Toggle floating menu' * @prop id * @prop class: className * @prop isActive = $bindable(false) * @prop onToggle */ declare const FloatingMenuButton: import("svelte").Component; type FloatingMenuButton = ReturnType; export default FloatingMenuButton;