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