import BaseClient from '../../base'; /** For usage, see {@link GroupsApi.userCount} */ export interface UserCountReq { clientGroupIds: string[]; } /** For usage, see {@link GroupsApi.userCount} */ export interface UserCountResItem { id: number; clientGroupId: string; userCount: number; } /** For usage, see {@link GroupsApi.userCount} */ export interface UserCountApi { (data: UserCountReq): Promise; } declare const userCountBuilder: (applozicClient: BaseClient) => UserCountApi; export default userCountBuilder;