export interface EnhancedContactItem { /** * Professional or personal description of the contact. * May include job title, company affiliation, or biographical information. */ description: string; /** Primary email address associated with this contact profile. */ email: string; /** * Additional web links associated with this contact profile. * May include personal websites, social media profiles, or professional portfolios. */ links: string[]; /** * LinkedIn profile URL if available and publicly accessible. * Null if no LinkedIn profile is found or accessible. */ linkedin: string | null; /** Full name of the contact person associated with this profile. */ name: string; }