import { Authentication, Interceptor, ApiKeyAuth, CreateTeamRequest, TeamCreated, TeamListResponse, TeamResponse, TeamUpdateRequest } from '../model';
import { optionsI, returnTypeI } from './';
export declare class TeamsApi {
    protected _basePath: string;
    protected _defaultHeaders: any;
    protected _useQuerystring: boolean;
    protected authentications: {
        default: Authentication;
        Bearer: ApiKeyAuth;
        'X-API-KEY': ApiKeyAuth;
    };
    protected interceptors: Interceptor[];
    constructor(basePath?: string);
    set useQuerystring(value: boolean);
    set basePath(basePath: string);
    set defaultHeaders(defaultHeaders: any);
    get defaultHeaders(): any;
    get basePath(): string;
    setDefaultAuthentication(auth: Authentication): void;
    setApiKey(apikey: string): void;
    setAccessToken(accessToken: string): void;
    addInterceptor(interceptor: Interceptor): void;
    createTeam(createTeamRequest: CreateTeamRequest, options?: optionsI): Promise<TeamCreated>;
    getTeam(teamId: string, options?: optionsI): Promise<TeamResponse>;
    listTeams(page: number, pageSize?: number, searchKey?: string, options?: optionsI): Promise<TeamListResponse>;
    updateTeam(teamUpdateRequest: TeamUpdateRequest, options?: optionsI): Promise<returnTypeI>;
}
