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