import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ example?: "dock" | "actions" | "variants" | "stack"; padding?: "none" | "sm" | "md"; chrome?: boolean; fill?: boolean; collapsible?: boolean; }, {}, "">; tags: string[]; argTypes: { example: { control: "select"; options: string[]; }; padding: { control: "select"; options: string[]; }; chrome: { control: "boolean"; }; fill: { control: "boolean"; }; collapsible: { control: "boolean"; }; }; args: { example: "dock"; padding: "sm"; chrome: true; fill: true; collapsible: true; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const WithActions: Story; export declare const Variants: Story; export declare const Stacked: Story;