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