import { ApiRequest, ApiResponse } from "@gongt/ts-stl-library/request/protocol"; import { ERequestType } from "@gongt/ts-stl-library/request/request"; import { IUserListNormalizedClient, IUserProfile, IUserProfileBase } from "../define"; export declare const GetUserListByIdUrl = "/get_user_list"; export declare const GetUserListByIdMethod: ERequestType; export interface GetUserListByIdRequest extends ApiRequest { idList: string[]; profileQuery: (keyof IUserProfile)[] | '*'; } export interface GetUserListByIdResponse extends ApiResponse { userList: IUserListNormalizedClient[]; }