import Service from "../../base/service"; import { ServiceOptions } from "../../base/types"; interface ListParams { Limit?: number; Offset?: number; Query?: string; } interface User { CreateDate: string; UpdateDate: string; Status: string; AccountId: number; UserName: string; Description: string; DisplayName: string; Email: string; MobilePhone: string; Trn: string; Source: string; } interface ListUserResult { UserMetadata: User[]; } export declare class IamService extends Service { constructor(options?: ServiceOptions); ListUsers: (requestData: ListParams, params?: (import("../../base/types").FetchParams & import("axios").AxiosRequestConfig) | undefined, options?: import("../../base/types").ServiceOptionsBase | undefined) => Promise>; } export declare const defaultService: IamService; export {};