import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ orientation?: "horizontal" | "vertical"; dragging?: boolean; example?: "playground" | "both"; revealOnHover?: boolean; }, {}, "">; tags: string[]; argTypes: { example: { control: "select"; options: string[]; }; orientation: { control: "select"; options: string[]; }; dragging: { control: "boolean"; }; revealOnHover: { control: "boolean"; }; }; args: { example: "playground"; orientation: "horizontal"; dragging: false; revealOnHover: false; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const RevealOnHover: Story; export declare const Vertical: Story; export declare const BothOrientations: Story;