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