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