import type * as ElevenLabs from "../index";
export interface StreamingAudioChunkWithTimestampsResponse {
    /** 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;
}
