import type { WebhookHandlerDetail } from "../api/client.js"; import { type WebhookTaskOptions } from "./shared.js"; export interface WebhookInspectOptions extends WebhookTaskOptions { /** Item GUID or content-tree path of the webhook handler. */ webhook: string; } declare const parseWebhookRef: (value: string) => { itemId?: string; path?: string; }; export declare const runWebhookGet: (options: WebhookInspectOptions) => Promise; export { parseWebhookRef };