import { IUserOrgRelationship, IUserWithOrgType } from "../types"; /** * @private * Takes users array and sorts them into an object by the type of user they are * based on the orgType prop (world|org|community) * * @export * @param {IUserWithOrgType[]} users array of users * @return {IUserOrgRelationship} Object of users sorted by type (world, org, community) */ export declare function groupUsersByOrgRelationship(users: IUserWithOrgType[]): IUserOrgRelationship;