import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ checked?: boolean; indeterminate?: boolean; disabled?: boolean; size?: import("./SelectionBox.svelte.ts").SelectionBoxSize; tone?: import("./SelectionBox.svelte.ts").SelectionBoxTone; radius?: import("./SelectionBox.svelte.ts").SelectionBoxRadius; label?: string; showLabel?: boolean; demo?: "playground" | "states" | "sizes" | "table"; }, {}, "">; tags: string[]; argTypes: { checked: { control: "boolean"; }; indeterminate: { control: "boolean"; }; disabled: { control: "boolean"; }; size: { control: "select"; options: string[]; }; tone: { control: "select"; options: string[]; }; radius: { control: "select"; options: string[]; }; label: { control: "text"; }; showLabel: { control: "boolean"; }; demo: { control: false; }; }; args: { checked: true; indeterminate: false; disabled: false; size: "md"; tone: "brand"; radius: "sm"; label: string; showLabel: false; demo: "playground"; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Indeterminate: Story; export declare const Disabled: Story; export declare const WithLabel: Story; export declare const SuccessTone: Story; export declare const LargeSquare: Story; export declare const States: Story; export declare const Sizes: Story; export declare const TableSelection: Story;