import { WildduckClientComponent } from "../../client-component"; import { IWildduckApiCreateWebhookRequest, IWildduckApiCreateWebhookResponse, IWildduckApiGetWebhooksResponse, IWildduckApiSuccessResponse } from "../../client-schema"; import { IWildduckApiGetWebhooksOptions } from "./webhooks.interface"; export declare class WildduckWebhooksService extends WildduckClientComponent { deleteWebhook(webhook: string): Promise; getWebhooks(type: string, options?: Partial): Promise; createWebhook(dto: IWildduckApiCreateWebhookRequest): Promise; }