import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ size?: "sm" | "md"; showConnectors?: boolean; loading?: boolean; example?: "default" | "empty" | "links" | "scroll"; }, {}, "">; tags: string[]; parameters: { layout: string; }; argTypes: { size: { control: "select"; options: string[]; }; showConnectors: { control: "boolean"; }; loading: { control: "boolean"; }; example: { control: "select"; options: string[]; }; }; args: { size: "md"; showConnectors: true; loading: false; example: "default"; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Dense: Story; export declare const Empty: Story; export declare const Loading: Story; export declare const WithLinks: Story; export declare const Scrollable: Story; export declare const WithoutConnectors: Story;