import { BaseAPIRequestFactory } from './baseapi.js'; import { Configuration } from '../configuration.js'; import { RequestContext, ResponseContext, HttpInfo } from '../http/http.js'; import { ApiTokenInfoDTO } from '../models/ApiTokenInfoDTO.js'; import { UserBasicInfoDTO } from '../models/UserBasicInfoDTO.js'; import { UserDetailsDTO } from '../models/UserDetailsDTO.js'; import { UserFullDetailsDTO } from '../models/UserFullDetailsDTO.js'; export declare class AccountManagerForAdminApiRequestFactory extends BaseAPIRequestFactory { createTokenForUser(username: string, duration: number, _options?: Configuration): Promise; createUser(userFullDetailsDTO: UserFullDetailsDTO, _options?: Configuration): Promise; deleteTokenForUser(token: string, _options?: Configuration): Promise; deleteUser(username: string, _options?: Configuration): Promise; disableTokenForUser(token: string, _options?: Configuration): Promise; getDetailsOfUser(username: string, _options?: Configuration): Promise; getUserByToken(token: string, _options?: Configuration): Promise; listAuthoritiesOfUser(username: string, _options?: Configuration): Promise; listTokensOfUser(username: string, _options?: Configuration): Promise; listUsers(pageSize: number, pageNum: number, _options?: Configuration): Promise; listUsers1(_options?: Configuration): Promise; listUsers2(pageSize: number, _options?: Configuration): Promise; updateAuthoritiesOfUser(username: string, requestBody: Set, _options?: Configuration): Promise; updateUser(userFullDetailsDTO: UserFullDetailsDTO, _options?: Configuration): Promise; } export declare class AccountManagerForAdminApiResponseProcessor { createTokenForUserWithHttpInfo(response: ResponseContext): Promise>; createUserWithHttpInfo(response: ResponseContext): Promise>; deleteTokenForUserWithHttpInfo(response: ResponseContext): Promise>; deleteUserWithHttpInfo(response: ResponseContext): Promise>; disableTokenForUserWithHttpInfo(response: ResponseContext): Promise>; getDetailsOfUserWithHttpInfo(response: ResponseContext): Promise>; getUserByTokenWithHttpInfo(response: ResponseContext): Promise>; listAuthoritiesOfUserWithHttpInfo(response: ResponseContext): Promise>>; listTokensOfUserWithHttpInfo(response: ResponseContext): Promise>>; listUsersWithHttpInfo(response: ResponseContext): Promise>>; listUsers1WithHttpInfo(response: ResponseContext): Promise>>; listUsers2WithHttpInfo(response: ResponseContext): Promise>>; updateAuthoritiesOfUserWithHttpInfo(response: ResponseContext): Promise>; updateUserWithHttpInfo(response: ResponseContext): Promise>; }