import { UserModel, UserRole } from './model'; export declare class User { static users(token: string): Promise; static uidByEmail(token: string, email: string): Promise; static listRole(token: string, uid: string): Promise; static listRoleByResource(token: string, uid: string, appObjectId: string): Promise; static grantRole(token: string, uid: string, appObjectId: string, roleId: string): Promise; static revokeRole(token: string, uid: string, roleAssignmentId: string): Promise; static groups(token: string, uid: string): Promise; }