import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ position?: "bottom-right" | "bottom-left" | "top-right" | "top-left"; variant?: "primary" | "secondary" | "ghost" | "outline" | "destructive"; }, {}, "">; tags: string[]; argTypes: { position: { control: "select"; options: string[]; }; variant: { control: "select"; options: string[]; }; }; args: { position: "bottom-right"; variant: "primary"; }; }; export default meta; type Story = StoryObj; export declare const Default: Story;