import type * as ElevenLabs from "../index";
export interface AudioWithTimestampsAndVoiceSegmentsResponseModel {
    /** Base64 encoded audio data */
    audioBase64: string;
    /** Timestamp information for each character in the original text */
    alignment?: ElevenLabs.CharacterAlignmentResponseModel;
    /** Timestamp information for each character in the normalized text */
    normalizedAlignment?: ElevenLabs.CharacterAlignmentResponseModel;
    /** Voice segments for the audio */
    voiceSegments: ElevenLabs.VoiceSegment[];
}
