import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ variant?: "rail" | "soft" | "plain"; size?: "sm" | "md"; numbered?: boolean; title?: string; }, {}, "">; tags: string[]; argTypes: { variant: { control: "select"; options: string[]; }; size: { control: "select"; options: string[]; }; numbered: { control: "boolean"; }; title: { control: "text"; }; }; args: { variant: "rail"; size: "md"; numbered: false; title: string; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Numbered: Story; export declare const Soft: Story;