import { ITeamsStatus } from "../types"; /** * Takes array of group ids, if it is a core team, and teams status * and returns array of groups * * @param {array} groupIds Array of group ids * @param {boolean} isCoreTeam is this a core team? * @param {ITeamsStatus} teamsStatus status of main teams associated with site (core, content, followers) */ export declare function teamsToAddUsersTo(groupIds: string[], isCoreTeam: boolean, teamsStatus?: ITeamsStatus): string[];