import type { IUser } from "@esri/arcgis-rest-portal"; import { IHubRequestOptions } from "@esri/hub-common"; import { IGroupTemplate } from "../types"; /** * Create a team group. Will ensure the team name is unique in the users org * and return the group, with appropriate `.userMembership` attached. * @param {Object} user Current User * @param {Object} group Group to create * @param {IHubRequestOptions} hubRequestOptions * @private */ export declare function _createTeamGroup(user: IUser, group: IGroupTemplate, hubRequestOptions: IHubRequestOptions): Promise;