export interface VoiceSegment { /** The voice ID used for this segment */ voiceId: string; /** Start time of this voice segment */ startTimeSeconds: number; /** End time of this voice segment */ endTimeSeconds: number; /** Start index in the characters array */ characterStartIndex: number; /** End index in the characters array (exclusive) */ characterEndIndex: number; /** Line of the dialogue (script) that this segment is a part of. */ dialogueInputIndex: number; }