import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ variant?: "default" | "primary" | "secondary" | "success" | "warning" | "error" | "info"; size?: "sm" | "md" | "lg"; rounded?: boolean; dot?: boolean; label?: string; }, {}, "">; tags: string[]; argTypes: { variant: { control: "select"; options: string[]; description: string; }; size: { control: "select"; options: string[]; description: string; }; rounded: { control: "boolean"; description: string; }; dot: { control: "boolean"; description: string; }; label: { control: "text"; description: string; }; }; args: { variant: "primary"; size: "md"; rounded: false; dot: false; label: string; }; }; export default meta; type Story = StoryObj; export declare const Primary: Story; export declare const Success: Story; export declare const Warning: Story; export declare const Error: Story; export declare const Info: Story; export declare const Rounded: Story; export declare const Dot: Story;