import type { CancelablePromise } from '../core/CancelablePromise'; import type { BaseHttpRequest } from '../core/BaseHttpRequest'; export declare class GroupsManageService { readonly httpRequest: BaseHttpRequest; constructor(httpRequest: BaseHttpRequest); /** * @returns void * @throws ApiError */ addUsers(): CancelablePromise; /** * @returns void * @throws ApiError */ addGroups(): CancelablePromise; /** * @returns void * @throws ApiError */ getUsers(): CancelablePromise; /** * @returns void * @throws ApiError */ getUserDetails(): CancelablePromise; /** * @returns void * @throws ApiError */ getUserEmail(): CancelablePromise; /** * @returns void * @throws ApiError */ getGroups(): CancelablePromise; /** * @returns void * @throws ApiError */ getTeams(): CancelablePromise; /** * @returns void * @throws ApiError */ getRelatedGroups(): CancelablePromise; /** * @returns void * @throws ApiError */ getGroupDetails(): CancelablePromise; /** * @returns void * @throws ApiError */ getOrgDetails(): CancelablePromise; /** * @returns void * @throws ApiError */ updateGroup(): CancelablePromise; /** * @returns void * @throws ApiError */ getSubGroups(): CancelablePromise; /** * @returns void * @throws ApiError */ getParentGroups(): CancelablePromise; /** * @returns void * @throws ApiError */ getAllUsersCount(): CancelablePromise; /** * @returns void * @throws ApiError */ getRecentlyAddedUsersCount(): CancelablePromise; /** * @returns void * @throws ApiError */ getUsersByStatusCount(): CancelablePromise; /** * @returns void * @throws ApiError */ verifyUser(): CancelablePromise; /** * @returns void * @throws ApiError */ changePassword(): CancelablePromise; /** * @returns void * @throws ApiError */ deactivateGroup(): CancelablePromise; /** * @returns void * @throws ApiError */ activateGroup(): CancelablePromise; /** * @returns void * @throws ApiError */ getGroupsWithPermission(): CancelablePromise; /** * @returns void * @throws ApiError */ getOrganization(): CancelablePromise; /** * @returns void * @throws ApiError */ getSubGroupEmails(): CancelablePromise; /** * @returns void * @throws ApiError */ getAllPermissions(): CancelablePromise; /** * @returns void * @throws ApiError */ getSystemPermissions(): CancelablePromise; /** * @returns void * @throws ApiError */ updateOrganizations(): CancelablePromise; /** * @returns void * @throws ApiError */ patchGroups(): CancelablePromise; /** * @returns void * @throws ApiError */ getOrgParticipants(): CancelablePromise; }