/** * * `Pending` - Pending * * `Scheduled` - Scheduled * * `Success` - Success * * `Failed` - Failed * * `Cancelled` - Cancelled * * `In Progress` - In Progress */ export declare enum CourseCreationTaskStatusEnum { PENDING = "Pending", SCHEDULED = "Scheduled", SUCCESS = "Success", FAILED = "Failed", CANCELLED = "Cancelled", IN_PROGRESS = "In Progress" }