import { ObjectId } from 'mongodb'; import { IWebhook, WebhookMethod } from '../Interface'; export declare class Webhook implements IWebhook { _id: ObjectId; nodeId: string; webhookEndpoint: string; httpMethod: WebhookMethod; workflowShortId: string; webhookId: string; createdDate: Date; updatedDate: Date; }