import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ example?: "filters" | "mentions" | "playground" | "variants" | "sizes" | "assignees"; name?: string; description?: string; avatar?: string; status?: import("./UserChip.svelte.ts").UserChipStatus; size?: import("./UserChip.svelte.ts").UserChipSize; variant?: import("./UserChip.svelte.ts").UserChipVariant; label?: import("./UserChip.svelte.ts").UserChipLabel; selected?: boolean; disabled?: boolean; removable?: boolean; }, {}, "">; tags: string[]; argTypes: { example: { control: "select"; options: string[]; }; name: { control: "text"; }; description: { control: "text"; }; status: { control: "select"; options: (string | undefined)[]; }; size: { control: "select"; options: string[]; }; variant: { control: "select"; options: string[]; }; label: { control: "select"; options: string[]; }; selected: { control: "boolean"; }; disabled: { control: "boolean"; }; removable: { control: "boolean"; }; }; args: { example: "playground"; name: string; description: string; avatar: string; status: "online"; size: "md"; variant: "default"; label: "first"; selected: false; disabled: false; removable: true; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Assignees: Story; export declare const Filters: Story; export declare const Mentions: Story; export declare const Sizes: Story; export declare const Variants: Story; export declare const FullName: Story; export declare const Selected: Story; export declare const Disabled: Story;