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