export interface CuiUserCompany { readonly id: string; readonly companyId: string; readonly name: string; readonly globalAccessLevels: string[]; readonly contexts: CuiUserCompanyActivity[]; readonly isActive: boolean; } export interface CuiUserCompanyActivity { readonly activityId: string; readonly accessLevels: string[]; readonly isActive: boolean; readonly licenseBlocked: boolean; readonly type: CuiUserCompanyActivityType; readonly description: string; } export declare const enum CuiUserCompanyActivityType { Developer = "DEVELOPER", Manufacture = "MANUFACTURE" }