/**
 * 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 { Hook } from '../../generated/models';
import { HookTriggerResponse } from '../../generated/models';
import { HookUpdate } from '../../generated/models';
/**
 * HooksApiService - Auto-generated
 */
export declare class HooksApiService extends ApiBaseService {
    /**
     *
     * @summary Delete a given hook
     * @param {string} hookId The ID of the hook.
     * @param {string} hookType The hook type.
     */
    deleteHook(hookId: string, hookType: string): Promise<ApiResponse<void>>;
    /**
     *
     * @summary Get a hook by ID
     * @param {string} hookId The ID of the hook.
     * @param {string} hookType The hook type.
     */
    getHook(hookId: string, hookType: string): Promise<ApiResponse<Hook>>;
    /**
     *
     * @summary Trigger an incoming hook associated action
     * @param {string} hookId The ID of the hook.
     */
    triggerHook(hookId: string): Promise<ApiResponse<HookTriggerResponse>>;
    /**
     *
     * @summary Update an existing hook
     * @param {string} hookId The ID of the hook.
     * @param {string} hookType The hook type.
     * @param {HookUpdate} hookUpdate A JSON object containing the resource data
     */
    updateHook(hookId: string, hookType: string, hookUpdate: HookUpdate): Promise<ApiResponse<void>>;
}
