import { ITriggerClassType, ITriggerContructorParams, IWebhook, AnyObject, ITriggerOptions, IHelpers } from "actionsflow-core"; export default class Webhook implements ITriggerClassType { options: ITriggerOptions; helpers: IHelpers; constructor({ options, helpers }: ITriggerContructorParams); getItemKey(item: AnyObject): string; _getBodyKey(item: AnyObject): string; webhooks: IWebhook[]; }