export type CollegeData = { conversationStartTime: Date; speakers: SpeakerListItem[]; vocabulary: string; instructions: string; homelandId?: string; }; export type SpeakerListItem = { id: string; speaker: string; };