export declare enum AuthType { INTERNAL = 1, CLIENT = 2 } export declare enum EWorkSpaceType { NEXTA = 1, SCHOOL = 2, INDIVIDUAL = 3 } export declare class AuthContext { userId: string; authorities: string[]; workspaceId: string; workspaceType: EWorkSpaceType; authType?: AuthType; constructor(userId: string, workspaceId: string, workspaceType: string, authorities: string, authType?: AuthType); hasAuthority(authority: any): boolean; }