export default BottomNavigation; type BottomNavigation = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; declare const BottomNavigation: import("svelte").Component<{ /** * The `class` attribute on the wrapper element. */ class?: string | undefined; /** * Whether to hide the widget. An alias of the `aria-hidden` * attribute. */ hidden?: boolean | undefined; /** * Whether to disable the widget. An alias of the `aria-disabled` * attribute. */ disabled?: boolean | undefined; /** * Text label displayed above the group items. */ title?: string | undefined; /** * Primary slot content. */ children?: Snippet<[]> | undefined; } & Record, {}, "">; type Props = { /** * The `class` attribute on the wrapper element. */ class?: string | undefined; /** * Whether to hide the widget. An alias of the `aria-hidden` * attribute. */ hidden?: boolean | undefined; /** * Whether to disable the widget. An alias of the `aria-disabled` * attribute. */ disabled?: boolean | undefined; /** * Text label displayed above the group items. */ title?: string | undefined; /** * Primary slot content. */ children?: Snippet<[]> | undefined; }; import type { Snippet } from 'svelte';