import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ mode?: "toggle" | "select"; size?: "xs" | "sm" | "md" | "lg" | "xl"; variant?: "primary" | "secondary" | "ghost" | "outline" | "destructive"; }, {}, "">; tags: string[]; argTypes: { mode: { control: "select"; options: string[]; }; size: { control: "select"; options: string[]; }; variant: { control: "select"; options: string[]; }; }; args: { mode: "toggle"; size: "md"; variant: "ghost"; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Select: Story;