import type * as ElevenLabs from "../index";
export interface VideoTranscription {
    languageCode: string;
    text: string;
    words: ElevenLabs.VideoTranscriptionWord[];
}
