import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ title?: string; description?: string; side?: "left" | "right" | "top" | "bottom"; size?: "sm" | "md" | "lg" | "xl" | "full"; closeOnBackdrop?: boolean; closeOnEscape?: boolean; showClose?: boolean; blurBackdrop?: boolean; }, {}, "">; tags: string[]; argTypes: { title: { control: "text"; }; description: { control: "text"; }; side: { control: "select"; options: string[]; }; size: { control: "select"; options: string[]; }; closeOnBackdrop: { control: "boolean"; }; closeOnEscape: { control: "boolean"; }; showClose: { control: "boolean"; }; blurBackdrop: { control: "boolean"; }; }; args: { title: string; description: string; side: "right"; size: "md"; closeOnBackdrop: true; closeOnEscape: true; showClose: true; blurBackdrop: true; }; }; export default meta; type Story = StoryObj; export declare const Right: Story; export declare const Left: Story; export declare const Bottom: Story; export declare const Large: Story;