import type { Editor } from '@tiptap/core'; interface EditableButtonProps { editor: Editor | null; lockEditor?: string; unlockEditor?: string; ariaLabel?: string; id?: string; class?: string; isEditable?: boolean; onToggle?: (isEditable: boolean) => void; } /** * [Go to docs](https://flowbite-svelte.com/docs/plugins/wysiwyg) * ## Type * EditableButtonProps * ## Props * @prop editor * @prop lockEditor = 'Lock editor' * @prop unlockEditor = 'Unlock editor' * @prop ariaLabel = 'Toggle editor editable state' * @prop id * @prop class: className * @prop isEditable = $bindable(true) * @prop onToggle */ declare const EditableButton: import("svelte").Component; type EditableButton = ReturnType; export default EditableButton;