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