/** * Webhook domain — inspect + manage. * * - `webhook_inspect` (read) lists handlers or fetches one by id/path. * - `webhook_manage` (write) creates an item/publish event handler or * a workflow submit/validation action, and deletes any of the above. * * Mirrors the workflow tools' discriminated-verb pattern. Each handler * delegates to the `runWebhook*` task functions shared with the CLI. */ import type { McpRegistry } from "../registry.js"; export declare const registerWebhookTools: (registry: McpRegistry) => void;