import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ placement?: "top" | "bottom"; disabled?: boolean; rows?: number; variant?: "default" | "avatars" | "empty-start" | "bottom"; }, {}, "">; tags: string[]; argTypes: { variant: { control: "select"; options: string[]; }; placement: { control: "select"; options: string[]; }; disabled: { control: "boolean"; }; rows: { control: { type: "number"; min: number; max: number; }; }; }; args: { variant: "avatars"; placement: "top"; disabled: false; rows: number; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const EmptyStart: Story; export declare const DropdownBelow: Story; export declare const Disabled: Story; export declare const Compact: Story;