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