/** Lifecycle status: `queued` (waiting on the project to be ready, or on a worker), `processing` while it is being dubbed, `completed` once its output is available, `stale` when the transcript changed after the output was produced, or `failed`. */ export declare const DubbingLanguageResponseStatus: { readonly Queued: "queued"; readonly Processing: "processing"; readonly Completed: "completed"; readonly Stale: "stale"; readonly Failed: "failed"; }; export type DubbingLanguageResponseStatus = (typeof DubbingLanguageResponseStatus)[keyof typeof DubbingLanguageResponseStatus];