export interface IWebhookFactoryDefinition { app: string; appLabel: string; entity: string; entityLabel: string; eventName: string; label: string; } export interface IWebhookFactory { execute(): Promise; } export declare const WebhookFactory: import("@webiny/di").Abstraction; export declare namespace WebhookFactory { type Interface = IWebhookFactory; type Definition = IWebhookFactoryDefinition; }