import { HubTeamType } from "./types"; import { IHubRequestOptions } from "@esri/hub-common"; import type { IGroup } from "@esri/arcgis-rest-portal"; /** * Create a single Team, using the same logic as creating multiple Teams. * Also allows a set of custom props to be passed in and applied to the team. * * This should be used PRIOR to creating Sites/Initiatives. * @param {ICreateHubTeamOptions} createHubTeamOptions */ export declare function createHubTeam(opts: { title: string; type: HubTeamType; props: any; hubRequestOptions: IHubRequestOptions; }): Promise<{ props: any; groups: IGroup[]; }>;