import { IAuthenticationManager } from "@esri/arcgis-rest-request"; import type { IGroup } from "@esri/arcgis-rest-portal"; /** * Updates a group. Wrapper around updateGroup from arcgis-rest-portal * * @export * @param {IGroup} group Group object that's being updated * @param {IAuthenticationManager} authentication Auth * @return {*} {Promise<{ success: boolean; groupId: string }>} */ export declare function updateTeam(group: IGroup, authentication: IAuthenticationManager): Promise<{ success: boolean; groupId: string; }>;