export interface VideoTranscriptionWord {
    speakerId?: string;
    text: string;
    startMs: number;
    endMs: number;
}
