import type * as SarvamAI from "../index.mjs"; export interface DubbingLiveStatusData { job_id?: string | undefined; job_name?: string | undefined; status?: SarvamAI.DubbingJobStatus | undefined; /** Current pipeline step key. */ current_step?: string | undefined; /** Human-readable label of the current pipeline step. */ current_step_label?: string | undefined; /** Overall progress percentage (0–100). */ progress?: number | undefined; /** Export status when the job has a single target language. */ export?: SarvamAI.DubbingLiveStatusExportInfo | undefined; /** Export status per language when the job has multiple target languages. */ exports?: SarvamAI.DubbingLiveStatusExportInfo[] | undefined; /** Populated when `status` is `failed`. */ error_message?: string | undefined; }