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