export default ButtonGroup; type ButtonGroup = { $on?(type: string, callback: (e: any) => void): () => void; $set?(props: Partial>): void; }; declare const ButtonGroup: import("svelte").Component<{ /** * The `class` attribute on the wrapper element. */ class?: string | undefined; /** * The `aria-label` attribute on the wrapper element. */ ariaLabel?: string | undefined; /** * Primary slot content. */ children?: Snippet<[]> | undefined; } & Record, {}, "">; type Props = { /** * The `class` attribute on the wrapper element. */ class?: string | undefined; /** * The `aria-label` attribute on the wrapper element. */ ariaLabel?: string | undefined; /** * Primary slot content. */ children?: Snippet<[]> | undefined; }; import type { Snippet } from 'svelte';