export default InsertMenuButton; type InsertMenuButton = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial): void; }; declare const InsertMenuButton: import("svelte").Component<{ /** * Editor components. */ components: TextEditorComponent[]; }, {}, "">; type Props = { /** * Editor components. */ components: TextEditorComponent[]; }; import type { TextEditorComponent } from '../../../typedefs';