import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { DubbingError } from "./DubbingError"; import { DubbingProjectResponseStatus } from "./DubbingProjectResponseStatus"; import { DubbingSourceMediaInfo } from "./DubbingSourceMediaInfo"; import { VoicesNotPermittedWarning } from "./VoicesNotPermittedWarning"; export declare const DubbingProjectResponse: core.serialization.ObjectSchema; export declare namespace DubbingProjectResponse { interface Raw { project_id: string; status: DubbingProjectResponseStatus.Raw; reference?: string | null; source_language?: string | null; model_id?: string | null; media?: DubbingSourceMediaInfo.Raw | null; language_ids?: string[] | null; webhook_ids?: string[] | null; revision: number; error?: DubbingError.Raw | null; warnings?: VoicesNotPermittedWarning.Raw[] | null; created_at: string; updated_at: string; } }