import type * as ElevenLabs from "../../api/index";
import * as core from "../../core";
import type * as serializers from "../index";
import { AdditionalFormatResponseModel } from "./AdditionalFormatResponseModel";
import { DetectedEntity } from "./DetectedEntity";
import { SpeechToTextWordResponseModel } from "./SpeechToTextWordResponseModel";
export declare const SpeechToTextChunkResponseModel: core.serialization.ObjectSchema<serializers.SpeechToTextChunkResponseModel.Raw, ElevenLabs.SpeechToTextChunkResponseModel>;
export declare namespace SpeechToTextChunkResponseModel {
    interface Raw {
        language_code: string;
        language_probability: number;
        text: string;
        words: SpeechToTextWordResponseModel.Raw[];
        channel_index?: number | null;
        additional_formats?: (AdditionalFormatResponseModel.Raw | null | undefined)[] | null;
        transcription_id?: string | null;
        entities?: DetectedEntity.Raw[] | null;
    }
}
