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; withError?: boolean; }, {}, "">; tags: 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"; }; withError: { control: "boolean"; }; }; args: { orientation: "horizontal"; size: "md"; variant: "numbered"; clickable: true; nonLinear: false; showDescription: true; showConnectors: true; withError: false; }; }; export default meta; type Story = StoryObj; export declare const Horizontal: Story; export declare const Vertical: Story; export declare const Small: Story; export declare const Large: Story; export declare const Dots: Story; export declare const NonLinear: Story; export declare const ReadOnly: Story; export declare const WithError: Story; export declare const Compact: Story;