import { BaseEntry, Image } from '../core'; export interface CampusUnit { title: string; link?: { url: string; } | null; } export interface ExpertJob { id: string; title: string; url: string; roomNumber?: string; collegeSchools?: CampusUnit[] | null; campusUnits?: CampusUnit[] | null; } export interface ExpertOrganization { id: string; title: string; url: string; jobs: ExpertJob[]; } export interface ExpertContact { email?: string | null; linkedin?: string | null; website?: string | null; twitter?: string | null; } export interface ExpertSkills { languages?: string[] | null; mediaTrained?: boolean | null; } export interface ExpertCategory { id: string; title: string; url?: string | null; } export interface ExpertEntry extends BaseEntry { prefix?: string | null; firstName: string; middleName?: string | null; lastName: string; suffix?: string | null; pronouns?: string | null; headshot?: Image[] | null; summary?: { html: string; } | null; bio?: { html: string; } | null; organizations?: ExpertOrganization[]; areasOfExpertise?: ExpertCategory[] | null; topics?: ExpertCategory[] | null; campusUnits?: ExpertCategory[] | null; email?: string | null; linkedin?: string | null; website?: string | null; twitter?: string | null; bluesky?: string | null; substack?: string | null; languages?: string[] | null; mediaTrained?: boolean | null; } //# sourceMappingURL=experts.d.ts.map