/** Lifecycle status of the project: 'preparing'/'processing' while it transcribes, 'ready' once transcription is done, or 'failed'. */ 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];