export interface DiarizedEntry { /** transcript of the segment of that audio */ transcript: string; /** Start time of the word in seconds. */ start_time_seconds: number; /** End time of the word in seconds. */ end_time_seconds: number; /** Speaker ID for the word. */ speaker_id: string; }