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