/** * Serializer for mentor facets */ export type MentorFacet = { /** * Total number of mentors in this facet */ total: number; /** * Terms and their counts in this facet */ terms: Record; /** * Count of mentors not in any term */ other: number; };