/** * The type of this resource. Possible values: queued, finished, failed, processing * @export * @enum {string} */ export declare const DownloadsStatus: { readonly Queued: "queued"; readonly Finished: "finished"; readonly Failed: "failed"; readonly Processing: "processing"; }; export type DownloadsStatus = typeof DownloadsStatus[keyof typeof DownloadsStatus];