import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext, HttpInfo } from '../http/http'; import { CreateWebhookNotification } from '../models/CreateWebhookNotification'; import { WebhookNotification } from '../models/WebhookNotification'; import { WebhookNotificationPage } from '../models/WebhookNotificationPage'; export declare class EventsApiRequestFactory extends BaseAPIRequestFactory { deleteEventsWebhooksId(id: string, _options?: Configuration): Promise; getEventsWebhooks(_options?: Configuration): Promise; postEventsWebhooks(createWebhookNotification: CreateWebhookNotification, _options?: Configuration): Promise; } export declare class EventsApiResponseProcessor { deleteEventsWebhooksIdWithHttpInfo(response: ResponseContext): Promise>; getEventsWebhooksWithHttpInfo(response: ResponseContext): Promise>; postEventsWebhooksWithHttpInfo(response: ResponseContext): Promise>; }