import BaseClient from '../../base'; /** * For usage, see {@link GroupsApi.isUserPresent} */ export interface IsUserPresentReq { /** Group to check */ clientGroupId: string; /** User to check */ userId: string; } /** * For usage, see {@link GroupsApi.isUserPresent} */ export interface IsUserPresentApi { (data: IsUserPresentReq): Promise; } declare const isUserPresentBuilder: (applozicClient: BaseClient) => IsUserPresentApi; export default isUserPresentBuilder;