import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ size?: "xs" | "sm" | "md" | "lg" | "xl"; variant?: "primary" | "secondary" | "white" | "current"; label?: string; }, {}, "">; tags: string[]; argTypes: { size: { control: "select"; options: string[]; description: string; }; variant: { control: "select"; options: string[]; description: string; }; label: { control: "text"; description: string; }; }; args: { size: "md"; variant: "primary"; label: string; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Small: Story; export declare const Large: Story; export declare const Secondary: Story; export declare const White: Story;