import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ height?: number; color?: string; showTrack?: boolean; }, {}, "">; tags: string[]; argTypes: { height: { control: { type: "number"; min: number; max: number; }; }; color: { control: "color"; }; showTrack: { control: "boolean"; }; }; args: { height: number; color: string; showTrack: true; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Thick: Story; export declare const CustomColor: Story;