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