import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ status?: "online" | "offline" | "busy" | "away" | "neutral"; size?: "sm" | "md" | "lg"; pulse?: boolean; showLabel?: boolean; }, {}, "">; tags: string[]; argTypes: { status: { control: "select"; options: string[]; }; size: { control: "select"; options: string[]; }; pulse: { control: "boolean"; }; showLabel: { control: "boolean"; }; }; args: { status: "online"; size: "md"; pulse: true; showLabel: true; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Offline: Story;