import { t as IRestApiContext } from "./types2.mjs"; import { IHttpRequestMethods } from "n8n-workflow"; //#region src/api/webhooks.d.ts type WebhookData = { workflowId: string; webhookPath: string; method: IHttpRequestMethods; node: string; }; declare const findWebhook: (context: IRestApiContext, data: { path: string; method: string; }) => Promise; //#endregion export { findWebhook as t }; //# sourceMappingURL=webhooks.d.mts.map