import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ orientation?: "horizontal" | "vertical"; defaultSize?: number; minSize?: number; maxSize?: number; }, {}, "">; tags: string[]; argTypes: { orientation: { control: "select"; options: string[]; }; defaultSize: { control: { type: "range"; min: number; max: number; }; }; minSize: { control: "number"; }; maxSize: { control: "number"; }; }; args: { orientation: "horizontal"; defaultSize: number; minSize: number; maxSize: number; }; }; export default meta; type Story = StoryObj; export declare const Horizontal: Story; export declare const Vertical: Story; export declare const Asymmetric: Story;