import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ variant?: "plain" | "bar" | "sticky"; align?: "start" | "end" | "between"; loading?: boolean; example?: "default" | "danger" | "hint"; }, {}, "">; tags: string[]; argTypes: { variant: { control: "select"; options: string[]; }; align: { control: "select"; options: string[]; }; example: { control: "select"; options: string[]; }; loading: { control: "boolean"; }; }; args: { variant: "bar"; align: "end"; loading: false; example: "default"; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Loading: Story; export declare const WithDanger: Story; export declare const WithHint: Story; export declare const Sticky: Story;