export default FloatingActionButtonWrapper; type FloatingActionButtonWrapper = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial): void; }; declare const FloatingActionButtonWrapper: import("svelte").Component<{ /** * Slot content. */ children?: Snippet<[]> | undefined; }, {}, "">; type Props = { /** * Slot content. */ children?: Snippet<[]> | undefined; }; import type { Snippet } from 'svelte';