/// import http from 'http'; import { PaginatedRemoteUserList } from '../model/paginatedRemoteUserList'; import { RemoteUser } from '../model/remoteUser'; import { Authentication, Interceptor } from '../model/models'; import { ApiKeyAuth } from '../model/models'; export declare enum UsersApiApiKeys { tokenAuth = 0 } export declare class UsersApi { protected _basePath: string; protected _defaultHeaders: any; protected _useQuerystring: boolean; protected authentications: { default: Authentication; tokenAuth: ApiKeyAuth; }; protected interceptors: Interceptor[]; constructor(basePath?: string); set useQuerystring(value: boolean); set basePath(basePath: string); set defaultHeaders(defaultHeaders: any); get defaultHeaders(): any; get basePath(): string; setDefaultAuthentication(auth: Authentication): void; setApiKey(key: UsersApiApiKeys, value: string): void; addInterceptor(interceptor: Interceptor): void; usersList(xAccountToken: string, createdAfter?: Date, createdBefore?: Date, cursor?: string, email?: string, includeDeletedData?: boolean, includeRemoteData?: boolean, modifiedAfter?: Date, modifiedBefore?: Date, pageSize?: number, remoteFields?: 'access_role', remoteId?: string, options?: { headers: { [name: string]: string; }; }): Promise<{ response: http.IncomingMessage; body: PaginatedRemoteUserList; }>; usersRetrieve(xAccountToken: string, id: string, includeRemoteData?: boolean, remoteFields?: 'access_role', options?: { headers: { [name: string]: string; }; }): Promise<{ response: http.IncomingMessage; body: RemoteUser; }>; }