import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ example?: "basic" | "nested" | "checked" | "align-end" | "small" | "long"; size?: "sm" | "md"; side?: "bottom" | "top"; align?: "start" | "end"; closeOnSelect?: boolean; scrollable?: boolean; flyToSelected?: boolean; }, {}, "">; tags: string[]; argTypes: { example: { control: "select"; options: string[]; }; size: { control: "select"; options: string[]; }; side: { control: "select"; options: string[]; }; align: { control: "select"; options: string[]; }; closeOnSelect: { control: "boolean"; }; scrollable: { control: "boolean"; }; flyToSelected: { control: "boolean"; }; }; args: { example: "nested"; size: "md"; side: "bottom"; align: "start"; closeOnSelect: true; scrollable: false; flyToSelected: true; }; }; export default meta; type Story = StoryObj; export declare const Nested: Story; export declare const WithIcons: Story; export declare const CheckedItems: Story; export declare const AlignEnd: Story; export declare const Small: Story; export declare const OpenUpward: Story; export declare const LongScrollable: Story;