import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ example?: "disabled" | "files" | "mail" | "tasks" | "inbox" | "rightOnly" | "leftOnly"; threshold?: number; closeOnAction?: boolean; disabled?: boolean; }, {}, "">; tags: string[]; argTypes: { example: { control: "select"; options: string[]; description: string; }; threshold: { control: { type: "number"; min: number; max: number; step: number; }; }; closeOnAction: { control: "boolean"; }; disabled: { control: "boolean"; }; }; args: { example: "mail"; threshold: number; closeOnAction: true; disabled: false; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Inbox: Story; export declare const Tasks: Story; export declare const Files: Story; export declare const RightOnly: Story; export declare const LeftOnly: Story; export declare const Disabled: Story; export declare const StayOpen: Story; export declare const LowThreshold: Story;