import { UnipileClient } from '../client.js'; import { RequestOptions } from '../types/index.js'; import { WebhookCreateBody, WebhookCreateResponse } from '../webhooks/webhooks-create.types.js'; import { WebhookDeleteResponse } from '../webhooks/webhooks-delete.types.js'; import { WebhookListResponse } from '../webhooks/webhooks-list.types.js'; export declare class WebhookResource { private client; constructor(client: UnipileClient); getAll(options?: RequestOptions): Promise; create(input: WebhookCreateBody, options?: RequestOptions): Promise; delete(id: string, options?: RequestOptions): Promise; }