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