import { type UserChipLabel, type UserChipSize, type UserChipStatus, type UserChipVariant } from './UserChip.svelte'; type Example = 'playground' | 'assignees' | 'filters' | 'mentions' | 'sizes' | 'variants'; type $$ComponentProps = { example?: Example; name?: string; description?: string; avatar?: string; status?: UserChipStatus; size?: UserChipSize; variant?: UserChipVariant; label?: UserChipLabel; selected?: boolean; disabled?: boolean; removable?: boolean; }; declare const UserChipStory: import("svelte").Component<$$ComponentProps, {}, "">; type UserChipStory = ReturnType; export default UserChipStory;