import { HttpClient } from '@angular/common/http'; import { Injector } from '@angular/core'; import { BaseService, EnvironmentService } from 'tnx-shared'; export declare class UserGroupService extends BaseService { private _environmentService; entityName: string; serviceCode: string; constructor(http: HttpClient, injector: Injector, _environmentService: EnvironmentService); getDetailCustom(id: string, pid: string): Promise; updateUserGroupForUser(idUser: string, lstIdGroup: string[]): Promise; }