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