export interface BackgroundProcess { creationDate?: string; encodedKey?: string; endDate?: string; startDate?: string; state?: BackgroundProcessStateEnum; type?: BackgroundProcessTypeEnum; } export declare const BackgroundProcessStateEnum: { readonly Queued: "QUEUED"; readonly InProgress: "IN_PROGRESS"; readonly Complete: "COMPLETE"; readonly NotFound: "NOT_FOUND"; readonly Cancel: "CANCEL"; readonly ToBeCanceled: "TO_BE_CANCELED"; readonly TimedOut: "TIMED_OUT"; readonly Error: "ERROR"; readonly TransientError: "TRANSIENT_ERROR"; readonly Overridden: "OVERRIDDEN"; readonly RecoverableError: "RECOVERABLE_ERROR"; }; export type BackgroundProcessStateEnum = (typeof BackgroundProcessStateEnum)[keyof typeof BackgroundProcessStateEnum]; export declare const BackgroundProcessTypeEnum: { readonly CronJobs: "CRON_JOBS"; readonly EarlyManualCronJobsTrigger: "EARLY_MANUAL_CRON_JOBS_TRIGGER"; readonly ManualCronJobsTrigger: "MANUAL_CRON_JOBS_TRIGGER"; }; export type BackgroundProcessTypeEnum = (typeof BackgroundProcessTypeEnum)[keyof typeof BackgroundProcessTypeEnum];