/**
 * 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";
/**
 * TeamInvitationsApiService - Auto-generated
 */
export declare class TeamInvitationsApiService extends ApiBaseService {
    /**
     *
     * @summary Accept a team invitation
     * @param {string} teamInvitationId The ID of the team invitation.
     * @param {string} [token] The token to authorize the acceptance of public invitations.
     */
    acceptTeamInvitation(teamInvitationId: string, token?: string): Promise<ApiResponse<void>>;
    /**
     *
     * @summary Delete a pending team invitation
     * @param {string} teamInvitationId The ID of the team invitation.
     */
    deleteTeamInvitation(teamInvitationId: string): Promise<ApiResponse<void>>;
    /**
     *
     * @summary Reject a pending private team invitation
     * @param {string} teamInvitationId The ID of the team invitation.
     */
    rejectTeamInvitation(teamInvitationId: string): Promise<ApiResponse<void>>;
}
