import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ orientation?: "horizontal" | "vertical"; size?: "sm" | "md" | "lg"; variant?: "numbered" | "dots"; clickable?: boolean; nonLinear?: boolean; showDescription?: boolean; showConnectors?: boolean; showStepHeader?: boolean; loading?: boolean; canNext?: boolean; withError?: boolean; }, {}, "">; tags: string[]; parameters: { layout: string; }; argTypes: { orientation: { control: "select"; options: string[]; }; size: { control: "select"; options: string[]; }; variant: { control: "select"; options: string[]; }; clickable: { control: "boolean"; }; nonLinear: { control: "boolean"; }; showDescription: { control: "boolean"; }; showConnectors: { control: "boolean"; }; showStepHeader: { control: "boolean"; }; loading: { control: "boolean"; }; canNext: { control: "boolean"; }; withError: { control: "boolean"; }; }; args: { orientation: "horizontal"; size: "md"; variant: "numbered"; clickable: false; nonLinear: false; showDescription: true; showConnectors: true; showStepHeader: true; loading: false; canNext: true; withError: false; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Vertical: Story; export declare const Clickable: Story; export declare const NonLinear: Story; export declare const Dots: Story; export declare const Loading: Story; export declare const WithError: Story; export declare const Compact: Story;