import type { ArcGISIdentityManager } from "@esri/arcgis-rest-request"; import type { IUpdateItemResponse } from "@esri/arcgis-rest-portal"; import { IModel } from "@esri/hub-common"; /** * Removes a Team from N hub models. * First, if passed deleteTeam, it will delete the team * Then it iterates over an array of IModels and removes the given team ID from their teams array * * @export * @param {string} teamId Team ID of the team we are removing * @param {IModel[]} models Array of IModels * @param {ArcGISIdentityManager} authentication Auth * @return {*} {Promise} */ export declare function removeTeamFromItems(teamId: string, models: IModel[], authentication: ArcGISIdentityManager): Promise;