import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ size?: "sm" | "md" | "lg"; disabled?: boolean; status?: "default" | "error" | "success" | "warning"; }, {}, "">; tags: string[]; argTypes: { size: { control: "select"; options: string[]; }; status: { control: "select"; options: string[]; }; disabled: { control: "boolean"; }; }; args: { size: "md"; disabled: false; status: "default"; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Error: Story;