import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ example?: "ide" | "horizontal" | "vertical" | "sizeEnd" | "code" | "hover"; orientation?: "horizontal" | "vertical"; sizePane?: "start" | "end"; minSize?: number; maxSize?: number; revealOnHover?: boolean; }, {}, "">; tags: string[]; parameters: { layout: string; }; argTypes: { example: { control: "select"; options: string[]; }; orientation: { control: "select"; options: string[]; }; sizePane: { control: "select"; options: string[]; }; minSize: { control: { type: "number"; min: number; max: number; }; }; maxSize: { control: { type: "number"; min: number; max: number; }; }; revealOnHover: { control: "boolean"; }; }; args: { example: "ide"; orientation: "horizontal"; sizePane: "start"; minSize: number; maxSize: number; revealOnHover: false; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const RevealOnHover: Story; export declare const Horizontal: Story; export declare const Vertical: Story; export declare const SizeEndPane: Story; export declare const CodeEditor: Story;