import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ label?: string; min?: number; max?: number; step?: number; value?: number; disabled?: boolean; showValue?: boolean; valuePosition?: "header" | "tooltip" | "inline"; variant?: "default" | "inset"; showMarks?: boolean; unit?: string; size?: "sm" | "md" | "lg"; }, {}, "">; tags: string[]; argTypes: { label: { control: "text"; }; min: { control: "number"; }; max: { control: "number"; }; step: { control: "number"; }; value: { control: "number"; }; disabled: { control: "boolean"; }; showValue: { control: "boolean"; }; valuePosition: { control: "select"; options: string[]; }; variant: { control: "select"; options: string[]; }; showMarks: { control: "boolean"; }; unit: { control: "text"; }; size: { control: "select"; options: string[]; }; }; args: { label: string; min: number; max: number; step: number; value: number; disabled: false; showValue: true; valuePosition: "tooltip"; variant: "default"; showMarks: true; unit: string; size: "md"; }; }; export default meta; type Story = StoryObj; export declare const FloatingTooltip: Story; export declare const HeaderValue: Story; export declare const InsetPanel: Story; export declare const LargeSize: Story;