import type { StoryObj } from '@storybook/svelte'; declare const meta: { title: string; component: import("svelte").Component<{ example?: "gallery" | "single" | "team"; variant?: import("./UserCard.svelte.ts").UserCardVariant; }, {}, "">; tags: string[]; argTypes: { example: { control: "select"; options: string[]; }; variant: { control: "select"; options: string[]; }; }; args: { example: "gallery"; variant: "profile"; }; }; export default meta; type Story = StoryObj; export declare const Default: Story; export declare const Cover: Story; export declare const CompactTeam: Story;