import type { MentorInteractions } from './MentorInteractions'; export type MentorDetail = { mentor_id: string; name: string; slug: string; platform_key?: string | null; categories?: Array; subjects?: Array; interactions: MentorInteractions; };