import { IGroupTemplate } from "../types"; import { IHubRequestOptions } from "@esri/hub-common"; import type { IGroup } from "@esri/arcgis-rest-portal"; /** * Internal: Actually create the team groups * @param {String} title Title for the Team group * @param {Array} groupTemplates Array of group definitions to create the groups * @param {IHubRequestOptions} hubRequestOptions * @private */ export declare function _createTeamGroups(title: string, groupTemplates: IGroupTemplate[], translations: Record, hubRequestOptions: IHubRequestOptions): Promise<{ props: any; groups: IGroup[]; }>;