import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ checked?: boolean; disabled?: boolean; label?: string; labelPosition?: "left" | "right"; size?: "sm" | "md" | "lg"; }, {}, "">; tags: string[]; argTypes: { checked: { control: "boolean"; description: string; }; disabled: { control: "boolean"; description: string; }; label: { control: "text"; description: string; }; labelPosition: { control: "radio"; options: string[]; description: string; }; size: { control: "select"; options: string[]; description: string; }; }; args: { checked: false; disabled: false; label: string; labelPosition: "right"; size: "md"; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Checked: Story; export declare const Disabled: Story; export declare const LabelLeft: Story; export declare const Small: Story; export declare const Large: Story;