/** Lifecycle status of the project: `queued` before the source is picked up, `preparing` while it is transcribed, `ready` once transcription is done and language targets can start, or `failed`. A project is never reported as `processing` — that value belongs to language targets. */ export declare const DubbingProjectResponseStatus: { readonly Queued: "queued"; readonly Preparing: "preparing"; readonly Processing: "processing"; readonly Ready: "ready"; readonly Failed: "failed"; }; export type DubbingProjectResponseStatus = (typeof DubbingProjectResponseStatus)[keyof typeof DubbingProjectResponseStatus];