import { Client } from '../client.js'; import { WebhookRegisterOptions, WebhookRegisterResponse, WebhookVerifyOptions } from '../interfaces/webhook.js'; import 'axios'; import '../interfaces/config.js'; import '../types/index.js'; declare class Webhook { private client; constructor(client: Client); register(options: WebhookRegisterOptions): Promise; verify(options: WebhookVerifyOptions): Promise; } export { Webhook };