export default TabPanels; type TabPanels = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; /** * The container of ``s. The component name derives from XUL. This can be omitted if the * child tab panels don’t need a sliding animation. */ declare const TabPanels: import("svelte").Component<{ /** * The `class` attribute on the wrapper element. */ class?: string | undefined; /** * Primary slot content. */ children?: Snippet<[]> | undefined; } & Record, {}, "">; type Props = { /** * The `class` attribute on the wrapper element. */ class?: string | undefined; /** * Primary slot content. */ children?: Snippet<[]> | undefined; }; import type { Snippet } from 'svelte';