declare enum LicenseStatus {
    NotFound = "NotFound",
    Invalid = "Invalid",
    Expired = "Expired",
    Valid = "Valid",
    OutOfScope = "OutOfScope"
}
export { LicenseStatus };
