export default TabBox; type TabBox = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; /** * The container of `` and ``. The component name derives from XUL. This can be * omitted if not using vertical tabs. */ declare const TabBox: import("svelte").Component<{ /** * The `class` attribute on the wrapper element. */ class?: string | undefined; /** * Orientation of the widget. This is * typically contrary to ``’s `orientation`. */ orientation?: "horizontal" | "vertical" | undefined; /** * Primary slot content. */ children?: Snippet<[]> | undefined; } & Record, {}, "">; type Props = { /** * The `class` attribute on the wrapper element. */ class?: string | undefined; /** * Orientation of the widget. This is * typically contrary to ``’s `orientation`. */ orientation?: "horizontal" | "vertical" | undefined; /** * Primary slot content. */ children?: Snippet<[]> | undefined; }; import type { Snippet } from 'svelte';