/** * * `bachelors` - Bachelor's Degree * * `masters` - Master's Degree * * `phd` - PhD * * `diploma` - Diploma * * `certificate` - Certificate * * `ungraded` - Ungraded * * `other` - Other */ export declare enum ProgramTypeEnum { BACHELORS = "bachelors", MASTERS = "masters", PHD = "phd", DIPLOMA = "diploma", CERTIFICATE = "certificate", UNGRADED = "ungraded", OTHER = "other" }