import { HTTPClient } from '../../../../utils/http'; import { CRUD } from '../../../../utils'; import { CreateIAMTeamDTO, IAMTeam, UpdateIAMTeamDTO } from '../types'; export declare class IAMTeamsAPI extends CRUD { private readonly _baseUrl; constructor(httpClient: HTTPClient, _baseUrl: string); addMember(teamId: string, agentId: string): Promise; removeMember(teamId: string, agentId: string): Promise; } //# sourceMappingURL=teams.d.ts.map