import type * as ElevenLabs from "../index"; /** * Model representing the response from the aligner service. */ export interface ForcedAlignmentResponseModel { /** List of characters with their timing information. */ characters: ElevenLabs.ForcedAlignmentCharacterResponseModel[]; /** List of words with their timing information. */ words: ElevenLabs.ForcedAlignmentWordResponseModel[]; /** The average alignment loss/confidence score for the entire transcript, calculated from all characters. */ loss: number; }