import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ title?: string; description?: string; confirmLabel?: string; cancelLabel?: string; confirmLoading?: boolean; }, {}, "">; tags: string[]; argTypes: { title: { control: "text"; }; description: { control: "text"; }; confirmLabel: { control: "text"; }; cancelLabel: { control: "text"; }; confirmLoading: { control: "boolean"; }; }; args: { title: string; description: string; confirmLabel: string; cancelLabel: string; confirmLoading: false; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Loading: Story; export declare const CustomLabels: Story;