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