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