import type { StoryObj } from '@storybook/svelte'; import Button from './Button.svelte'; declare const meta: { title: string; component: typeof Button; tags: string[]; argTypes: { size: { control: { type: string; }; options: string[]; }; }; }; export default meta; type Story = StoryObj; export declare const Regular: Story;