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