import { IAddOrInviteContext, IAddOrInviteResponse } from "../types"; /** * @private * Governs the logic for inviting N users to a single group. * An individual invite call goes out for each user and the results are consolidated. * See comment in function about the for...of loop which explains reasoning. * * @export * @param {IAddOrInviteContext} context context object * @param {string} userType what type of user is it: org | world | community * @return {IAddOrInviteResponse} response object */ export declare function processInviteUsers(context: IAddOrInviteContext, userType: "world" | "org" | "community" | "partnered"): Promise;