import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import type * as serializers from "../index"; import { DubbingProjectResponseStatus } from "./DubbingProjectResponseStatus"; import { DubbingSourceMediaInfo } from "./DubbingSourceMediaInfo"; 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; revision: number; created_at: string; updated_at: string; } }