import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext, HttpInfo } from '../http/http'; import { CreateEndpoint } from '../models/CreateEndpoint'; import { CursorPageEndpoint } from '../models/CursorPageEndpoint'; import { Endpoint } from '../models/Endpoint'; import { UpdateEndpoint } from '../models/UpdateEndpoint'; export declare class WebhookEndpointsApiRequestFactory extends BaseAPIRequestFactory { v1WebhooksEndpointCreate(createEndpoint: CreateEndpoint, _options?: Configuration): Promise; v1WebhooksEndpointDelete(endpointId: string, _options?: Configuration): Promise; v1WebhooksEndpointList(cursor?: string, limit?: number, _options?: Configuration): Promise; v1WebhooksEndpointRetrieve(endpointId: string, _options?: Configuration): Promise; v1WebhooksEndpointUpdate(endpointId: string, updateEndpoint: UpdateEndpoint, _options?: Configuration): Promise; } export declare class WebhookEndpointsApiResponseProcessor { v1WebhooksEndpointCreateWithHttpInfo(response: ResponseContext): Promise>; v1WebhooksEndpointDeleteWithHttpInfo(response: ResponseContext): Promise>; v1WebhooksEndpointListWithHttpInfo(response: ResponseContext): Promise>; v1WebhooksEndpointRetrieveWithHttpInfo(response: ResponseContext): Promise>; v1WebhooksEndpointUpdateWithHttpInfo(response: ResponseContext): Promise>; }