import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ variant?: "panel" | "compact"; startBroken?: boolean; }, {}, "">; tags: string[]; argTypes: { variant: { control: "select"; options: string[]; }; startBroken: { control: "boolean"; }; }; args: { variant: "panel"; startBroken: false; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Compact: Story; export declare const AlreadyBroken: Story;