import type UserPermissionType from "../enums/user_permission_type"; import type { UserRoleType } from "../enums"; export declare class ApiUserRole { id: number; roleType: UserRoleType; scope: UserPermissionType; userId: number; firebaseOrganizationId: string; firebaseProjectId: string; workPackageId: number; constructor({ id, roleType, scope, userId, firebaseOrganizationId, firebaseProjectId, workPackageId }: Partial); }