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