import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ variant?: "default" | "primary" | "success" | "warning" | "error"; size?: "sm" | "md"; selected?: boolean; disabled?: boolean; dismissible?: boolean; }, {}, "">; tags: string[]; argTypes: { variant: { control: "select"; options: string[]; }; size: { control: "select"; options: string[]; }; selected: { control: "boolean"; }; disabled: { control: "boolean"; }; dismissible: { control: "boolean"; }; }; args: { variant: "default"; size: "md"; selected: false; disabled: false; dismissible: true; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Primary: Story; export declare const Small: Story; export declare const Disabled: Story;