interface ProfileStats { label: string; value: string | number; } interface Props { variant?: 'default' | 'company' | 'gamer'; name: string; tagline?: string; avatar?: string; coverImage?: string; location?: string; website?: string; joinedDate?: string; stats?: ProfileStats[]; tags?: string[]; followers?: number; following?: number; industry?: string; employees?: number; founded?: string; gamerTag?: string; level?: number; rank?: string; } declare const ProfileCard: import("svelte").Component; type ProfileCard = ReturnType; export default ProfileCard;