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