import { HttpService } from '../../http/http.service'; import { UserResponse } from './response/user-response'; import { UserRequest } from './response/user-request'; export declare class UsersRestService extends HttpService { private readonly SECURITY_ENDPOINT; private readonly SECURITY_USER_ENDPOINT; getUser(username: string): Promise; getUsers(): Promise; createUser(username: string, userRequest: UserRequest): Promise; updateUser(username: string, userRequest: UserRequest): Promise; updateCurrentUser(username: string, userRequest: UserRequest): Promise; deleteUser(username: string): Promise; }