import type * as SarvamAI from "../index.mjs"; export interface DubbingExportItem { /** Export record ID. */ id?: string | undefined; export_type?: SarvamAI.DubbingExportType | undefined; /** The target language (BCP-47) of this export. */ target_language?: string | undefined; status?: SarvamAI.DubbingExportItemStatus | undefined; /** When the export was triggered. */ created_at?: string | undefined; /** When the export finished (if completed). */ completed_at?: string | undefined; /** True if translate chunks for this language were modified after the export completed, so the output no longer reflects the latest edits. */ is_stale?: boolean | undefined; /** Signed, time-limited (~24h) download URL. Present once `status` is `completed`. */ download_url?: string | undefined; }