import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ value?: number; max?: number; indeterminate?: boolean; variant?: "primary" | "success" | "warning" | "error" | "info"; size?: "sm" | "md" | "lg"; showValue?: boolean; label?: string; }, {}, "">; tags: string[]; argTypes: { value: { control: "number"; }; max: { control: "number"; }; indeterminate: { control: "boolean"; }; variant: { control: "select"; options: string[]; }; size: { control: "select"; options: string[]; }; showValue: { control: "boolean"; }; label: { control: "text"; }; }; args: { value: number; max: number; indeterminate: false; variant: "primary"; size: "md"; showValue: true; label: string; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Success: Story; export declare const Warning: Story; export declare const Error: Story; export declare const Indeterminate: Story;