import { EventbriteClient } from '../eventbrite/client.js'; export declare class DeleteWebhookTool { private client; constructor(client: EventbriteClient); getToolDefinition(): { name: string; description: string; inputSchema: { type: string; properties: { webhook_id: { type: string; description: string; }; }; required: string[]; }; }; execute(args: { webhook_id: string; }): Promise; } //# sourceMappingURL=delete-webhook.d.ts.map