import { IRemoveGroupUsersResult } from "@esri/arcgis-rest-portal"; import { IAuthenticationManager } from "@esri/arcgis-rest-request"; /** * Removes N users from N teams. Calls removeUsersFromTeam on each of the N teams * * @export * @param {string[]} teamIds Array of team ids * @param {string[]} usernames Array of usernames to remove * @param {IAuthenticationManager} ro Auth * @return {*} {Promise} */ export declare function removeUsersFromTeams(teamIds: string[], usernames: string[], ro: IAuthenticationManager): Promise;