import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ title?: string; description?: string; size?: "xs" | "sm" | "md" | "lg" | "xl" | "full"; tone?: "default" | "info" | "success" | "warning" | "danger"; position?: "center" | "top"; closeOnBackdrop?: boolean; closeOnEscape?: boolean; closeOnConfirm?: boolean; showClose?: boolean; showCancel?: boolean; showConfirm?: boolean; cancelLabel?: string; confirmLabel?: string; confirmVariant?: "primary" | "secondary" | "destructive"; confirmLoading?: boolean; confirmDisabled?: boolean; hideFooter?: boolean; footerAlign?: "start" | "center" | "end" | "between"; scrollable?: boolean; blurBackdrop?: boolean; body?: string; }, {}, "">; tags: string[]; argTypes: { title: { control: "text"; }; description: { control: "text"; }; size: { control: "select"; options: string[]; }; tone: { control: "select"; options: string[]; }; position: { control: "select"; options: string[]; }; closeOnBackdrop: { control: "boolean"; }; closeOnEscape: { control: "boolean"; }; closeOnConfirm: { control: "boolean"; }; showClose: { control: "boolean"; }; showCancel: { control: "boolean"; }; showConfirm: { control: "boolean"; }; cancelLabel: { control: "text"; }; confirmLabel: { control: "text"; }; confirmVariant: { control: "select"; options: string[]; }; confirmLoading: { control: "boolean"; }; confirmDisabled: { control: "boolean"; }; hideFooter: { control: "boolean"; }; footerAlign: { control: "select"; options: string[]; }; scrollable: { control: "boolean"; }; blurBackdrop: { control: "boolean"; }; body: { control: "text"; }; }; args: { title: string; description: string; size: "md"; tone: "default"; position: "center"; closeOnBackdrop: true; closeOnEscape: true; closeOnConfirm: true; showClose: true; showCancel: true; showConfirm: true; cancelLabel: string; confirmLabel: string; confirmVariant: "primary"; confirmLoading: false; confirmDisabled: false; hideFooter: false; footerAlign: "end"; scrollable: true; blurBackdrop: true; body: string; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const ExtraSmall: Story; export declare const ExtraLarge: Story; export declare const FullWidth: Story; export declare const TopPosition: Story; export declare const DangerTone: Story; export declare const SuccessTone: Story; export declare const LoadingConfirm: Story; export declare const WithBody: Story;