import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ attached?: boolean; orientation?: "horizontal" | "vertical"; size?: "sm" | "md" | "lg"; }, {}, "">; tags: string[]; argTypes: { attached: { control: "boolean"; }; orientation: { control: "select"; options: string[]; }; size: { control: "select"; options: string[]; }; }; args: { attached: true; orientation: "horizontal"; size: "md"; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Detached: Story; export declare const Vertical: Story;