export default ToggleBlockMenuItem; type ToggleBlockMenuItem = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; declare const ToggleBlockMenuItem: import("svelte").Component<{ /** * Button type. */ type: TextEditorBlockType; } & Record, {}, "">; type Props = { /** * Button type. */ type: TextEditorBlockType; }; import type { TextEditorBlockType } from '../../../typedefs';