import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ axis?: "both" | "x" | "y"; align?: "start" | "center" | "end"; padding?: "none" | "sm" | "md" | "lg"; maxWidth?: string; }, {}, "">; tags: string[]; argTypes: { axis: { control: "select"; options: string[]; }; align: { control: "select"; options: string[]; }; padding: { control: "select"; options: string[]; }; maxWidth: { control: "text"; }; }; args: { axis: "both"; align: "center"; padding: "md"; maxWidth: string; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Horizontal: Story; export declare const Vertical: Story;