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