import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ tone?: "brand" | "neutral" | "success" | "warning" | "error" | "info"; }, {}, "">; tags: string[]; argTypes: { tone: { control: "select"; options: string[]; }; }; args: { tone: "brand"; }; }; export default meta; type Story = StoryObj; export declare const Default: Story;