import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ fullHeight?: boolean; framed?: boolean; showRail?: boolean; showContextual?: boolean; }, {}, "">; tags: string[]; parameters: { layout: string; }; argTypes: { fullHeight: { control: "boolean"; }; framed: { control: "boolean"; }; showRail: { control: "boolean"; }; showContextual: { control: "boolean"; }; }; args: { fullHeight: true; framed: false; showRail: false; showContextual: false; }; }; export default meta; type Story = StoryObj; export declare const Fullscreen: Story; export declare const WithRail: Story; export declare const Coolify: Story; export declare const FramedPreview: Story;