import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "full" | "3xl" | "4xl" | "5xl" | "6xl" | "7xl"; padding?: "none" | "sm" | "md" | "lg"; }, {}, "">; tags: string[]; argTypes: { size: { control: "select"; options: string[]; }; padding: { control: "select"; options: string[]; }; }; args: { size: "md"; padding: "md"; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Narrow: Story; export declare const Wide: Story; export declare const FullBleed: Story;