import { IHubRequestOptions } from "@esri/hub-common"; import { HubTeamType } from "./types"; import type { IGroup } from "@esri/arcgis-rest-portal"; /** * Create all the groups (aka Teams) required for a Site or Initiative * The group names are derived from the Site/Initiative title. Group names * must be unique on create, so if necessary we will increment the names * after translation. If you need to ADD a Team to an existing Site/Initiative, * use the teams-service::addTeams function * @param {ICreateHubTeamsOptions} createHubTeamsOptions */ export declare function createHubTeams(opts: { title: string; types: HubTeamType[]; hubRequestOptions: IHubRequestOptions; }): Promise<{ props: any; groups: IGroup[]; }>;