import type { ArcGISIdentityManager } from "@esri/arcgis-rest-request"; /** * removeTeam unprotects a group, then deletes it * * @export * @param {string} id Team Id * @param {ArcGISIdentityManager} authentication authentication * @return {*} {Promise<{groupId: string; success: boolean}>} */ export declare function removeTeam(id: string, authentication: ArcGISIdentityManager): Promise<{ groupId: string; success: boolean; }>;