import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ src?: string; alt?: string; name?: string; size?: "xs" | "sm" | "md" | "lg" | "xl" | "2xl"; status?: "online" | "offline" | "busy" | "away" | null; }, {}, "">; tags: string[]; argTypes: { name: { control: "text"; description: string; }; src: { control: "text"; description: string; }; alt: { control: "text"; description: string; }; size: { control: "select"; options: string[]; description: string; }; status: { control: "select"; options: (string | null)[]; description: string; }; }; args: { name: string; size: "md"; status: null; }; }; export default meta; type Story = StoryObj; export declare const WithInitials: Story; export declare const Online: Story; export declare const Busy: Story; export declare const Away: Story; export declare const Offline: Story; export declare const ExtraLarge: Story;