import type * as ElevenLabs from "../index";
/**
 * Word-level transcription data with timing information.
 */
export interface TranscriptionWord {
    /** The transcribed word. */
    text?: string;
    /** Start time in seconds. */
    start?: number;
    /** End time in seconds. */
    end?: number;
    /** The type of word. */
    type?: ElevenLabs.TranscriptionWordType;
    /** The ID of the speaker if available. */
    speakerId?: string;
    /** Confidence score for this word. */
    logprob?: number;
    /** The characters in the word. */
    characters?: string[];
}
