/**
 * devopness API
 * Devopness API - Painless essential DevOps to everyone
 *
 * The version of the OpenAPI document: latest
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { ApiBaseService } from "../../../services/ApiBaseService";
import { ApiResponse } from "../../../common/ApiResponse";
import { Invitation } from '../../generated/models';
import { InvitationRelation } from '../../generated/models';
import { InvitationTeamCreate } from '../../generated/models';
/**
 * TeamsInvitationsApiService - Auto-generated
 */
export declare class TeamsInvitationsApiService extends ApiBaseService {
    /**
     *
     * @summary Create a new invitation for a team
     * @param {number} teamId The ID of the team.
     * @param {InvitationTeamCreate} invitationTeamCreate A JSON object containing the resource data
     */
    addTeamInvitation(teamId: number, invitationTeamCreate: InvitationTeamCreate): Promise<ApiResponse<Invitation>>;
    /**
     *
     * @summary Return a list of invitations belonging to a team
     * @param {number} teamId The ID of the team.
     * @param {number} [page] Number of the page to be retrieved
     * @param {number} [perPage] Number of items returned per page
     */
    listTeamInvitations(teamId: number, page?: number, perPage?: number): Promise<ApiResponse<Array<InvitationRelation>>>;
}
