/** * Activity processing statuses. */ export declare const ActivityProcessingStatus: { /** * Pending: Activity Processing has not started yet. */ readonly Pending: "pending"; /** * Running Activity processing is running. */ readonly Running: "running"; /** * Completed: Activity processing completed without error. */ readonly Completed: "completed"; /** * Error: Activity processing cannot be performed and marked as in error. (Depends on application). */ readonly Error: "error"; /** * Transient state. The background tasks associated with the activity are still being registered. */ readonly Registering: "registering"; }; /** * The type exported. */ export type ActivityProcessingStatus = (typeof ActivityProcessingStatus)[keyof typeof ActivityProcessingStatus];