import { IHubGroup } from "../core/types/IHubGroup"; import type { IArcGISContext } from "../types/IArcGISContext"; type WellKnownGroup = "hubGroup" | "hubViewGroup" | "hubEditGroup" | "hubFollowersGroup" | "hubAssociationsGroup"; /** * Fetches a well known group template based on a name * * @param groupType String of the group type to get * @returns Group template */ export declare function getWellKnownGroup(groupType: WellKnownGroup, context: IArcGISContext): Partial; export {};