export declare const DubbingJobStatus: { readonly Queued: "queued"; readonly InProgress: "in_progress"; readonly Completed: "completed"; readonly Failed: "failed"; readonly PartialFailure: "partial_failure"; readonly Deleted: "deleted"; }; export type DubbingJobStatus = (typeof DubbingJobStatus)[keyof typeof DubbingJobStatus];