export interface TimestampsModel { /** List of transcript chunks (sentence or phrase segments). Not individual words. */ words: string[]; /** List of start times for each chunk in seconds. */ start_time_seconds: number[]; /** List of end times for each chunk in seconds. */ end_time_seconds: number[]; }