/**
 * CloudHospital Api
 * CloudHospital application with Swagger, Swashbuckle, and API versioning.
 *
 * The version of the OpenAPI document: 2
 * Contact: developer@icloudhospital.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { AxiosPromise, AxiosInstance, AxiosRequestConfig } from 'axios';
import { Configuration } from '../configuration';
import { RequestArgs, BaseAPI } from '../base';
import { ValidateZohoDealClosedWonWebhookCommand } from '../models';
import { ValidateZohoDealClosedWonWebhookResult } from '../models';
import { ZohoDealClosedWonWebhookCommand } from '../models';
/**
 * WebhooksApi - axios parameter creator
 * @export
 */
export declare const WebhooksApiAxiosParamCreator: (configuration?: Configuration) => {
    /**
     *
     * @summary Webhook endpoint for Zoho dealClosedWon workflow
     * @param {string} [xCloudhospitalApiKey]
     * @param {ZohoDealClosedWonWebhookCommand} [zohoDealClosedWonWebhookCommand] paylaod
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    apiV2WebhooksZohodealclosedwonPost: (xCloudhospitalApiKey?: string, zohoDealClosedWonWebhookCommand?: ZohoDealClosedWonWebhookCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
    /**
     *
     * @summary Validation endpoint for Zoho dealClosedWon workflow data
     * @param {string} [xCloudhospitalApiKey]
     * @param {ValidateZohoDealClosedWonWebhookCommand} [validateZohoDealClosedWonWebhookCommand] payload
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    apiV2WebhooksZohodealclosedwonValidatePost: (xCloudhospitalApiKey?: string, validateZohoDealClosedWonWebhookCommand?: ValidateZohoDealClosedWonWebhookCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
};
/**
 * WebhooksApi - functional programming interface
 * @export
 */
export declare const WebhooksApiFp: (configuration?: Configuration) => {
    /**
     *
     * @summary Webhook endpoint for Zoho dealClosedWon workflow
     * @param {string} [xCloudhospitalApiKey]
     * @param {ZohoDealClosedWonWebhookCommand} [zohoDealClosedWonWebhookCommand] paylaod
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    apiV2WebhooksZohodealclosedwonPost(xCloudhospitalApiKey?: string, zohoDealClosedWonWebhookCommand?: ZohoDealClosedWonWebhookCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
    /**
     *
     * @summary Validation endpoint for Zoho dealClosedWon workflow data
     * @param {string} [xCloudhospitalApiKey]
     * @param {ValidateZohoDealClosedWonWebhookCommand} [validateZohoDealClosedWonWebhookCommand] payload
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    apiV2WebhooksZohodealclosedwonValidatePost(xCloudhospitalApiKey?: string, validateZohoDealClosedWonWebhookCommand?: ValidateZohoDealClosedWonWebhookCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValidateZohoDealClosedWonWebhookResult>>;
};
/**
 * WebhooksApi - factory interface
 * @export
 */
export declare const WebhooksApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
    /**
     *
     * @summary Webhook endpoint for Zoho dealClosedWon workflow
     * @param {string} [xCloudhospitalApiKey]
     * @param {ZohoDealClosedWonWebhookCommand} [zohoDealClosedWonWebhookCommand] paylaod
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    apiV2WebhooksZohodealclosedwonPost(xCloudhospitalApiKey?: string, zohoDealClosedWonWebhookCommand?: ZohoDealClosedWonWebhookCommand, options?: any): AxiosPromise<void>;
    /**
     *
     * @summary Validation endpoint for Zoho dealClosedWon workflow data
     * @param {string} [xCloudhospitalApiKey]
     * @param {ValidateZohoDealClosedWonWebhookCommand} [validateZohoDealClosedWonWebhookCommand] payload
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     */
    apiV2WebhooksZohodealclosedwonValidatePost(xCloudhospitalApiKey?: string, validateZohoDealClosedWonWebhookCommand?: ValidateZohoDealClosedWonWebhookCommand, options?: any): AxiosPromise<ValidateZohoDealClosedWonWebhookResult>;
};
/**
 * Request parameters for apiV2WebhooksZohodealclosedwonPost operation in WebhooksApi.
 * @export
 * @interface WebhooksApiApiV2WebhooksZohodealclosedwonPostRequest
 */
export interface WebhooksApiApiV2WebhooksZohodealclosedwonPostRequest {
    /**
     *
     * @type {string}
     * @memberof WebhooksApiApiV2WebhooksZohodealclosedwonPost
     */
    readonly xCloudhospitalApiKey?: string;
    /**
     * paylaod
     * @type {ZohoDealClosedWonWebhookCommand}
     * @memberof WebhooksApiApiV2WebhooksZohodealclosedwonPost
     */
    readonly zohoDealClosedWonWebhookCommand?: ZohoDealClosedWonWebhookCommand;
}
/**
 * Request parameters for apiV2WebhooksZohodealclosedwonValidatePost operation in WebhooksApi.
 * @export
 * @interface WebhooksApiApiV2WebhooksZohodealclosedwonValidatePostRequest
 */
export interface WebhooksApiApiV2WebhooksZohodealclosedwonValidatePostRequest {
    /**
     *
     * @type {string}
     * @memberof WebhooksApiApiV2WebhooksZohodealclosedwonValidatePost
     */
    readonly xCloudhospitalApiKey?: string;
    /**
     * payload
     * @type {ValidateZohoDealClosedWonWebhookCommand}
     * @memberof WebhooksApiApiV2WebhooksZohodealclosedwonValidatePost
     */
    readonly validateZohoDealClosedWonWebhookCommand?: ValidateZohoDealClosedWonWebhookCommand;
}
/**
 * WebhooksApi - object-oriented interface
 * @export
 * @class WebhooksApi
 * @extends {BaseAPI}
 */
export declare class WebhooksApi extends BaseAPI {
    /**
     *
     * @summary Webhook endpoint for Zoho dealClosedWon workflow
     * @param {WebhooksApiApiV2WebhooksZohodealclosedwonPostRequest} requestParameters Request parameters.
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     * @memberof WebhooksApi
     */
    apiV2WebhooksZohodealclosedwonPost(requestParameters?: WebhooksApiApiV2WebhooksZohodealclosedwonPostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
    /**
     *
     * @summary Validation endpoint for Zoho dealClosedWon workflow data
     * @param {WebhooksApiApiV2WebhooksZohodealclosedwonValidatePostRequest} requestParameters Request parameters.
     * @param {*} [options] Override http request option.
     * @throws {RequiredError}
     * @memberof WebhooksApi
     */
    apiV2WebhooksZohodealclosedwonValidatePost(requestParameters?: WebhooksApiApiV2WebhooksZohodealclosedwonValidatePostRequest, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<ValidateZohoDealClosedWonWebhookResult, any>>;
}
//# sourceMappingURL=webhooks-api.d.ts.map