import type { IUser } from "@esri/arcgis-rest-portal"; import { IHubRequestOptions } from "@esri/hub-common"; import { HubTeamType } from "../types"; /** * Determine if the current user can create a specific type of team * @param {Object} user Current User * @param {HubTeamType} hubTeamType * @param {*} hubRequestOptions */ export declare function canUserCreateTeam(user: IUser, hubTeamType: HubTeamType, hubRequestOptions: IHubRequestOptions): boolean;