import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { DubbingError } from "./DubbingError"; import { DubbingLanguageOutputs } from "./DubbingLanguageOutputs"; import { DubbingLanguageResponseStatus } from "./DubbingLanguageResponseStatus"; import { VoiceSettings } from "./VoiceSettings"; import { VoicesNotPermittedWarning } from "./VoicesNotPermittedWarning"; export declare const DubbingLanguageResponse: core.serialization.ObjectSchema; export declare namespace DubbingLanguageResponse { interface Raw { language_id: string; project_id: string; target_language: string; status: DubbingLanguageResponseStatus.Raw; model_id?: string | null; voice_settings?: VoiceSettings.Raw | null; outputs?: DubbingLanguageOutputs.Raw | null; revision: number; output_revision?: number | null; error?: DubbingError.Raw | null; warnings?: VoicesNotPermittedWarning.Raw[] | null; created_at: string; updated_at: string; } }