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