import { WebhookProvider as WebhookProviderAbstraction } from "./abstractions/WebhookProvider.js"; import { WebhookFactory } from "./abstractions/WebhookFactory.js"; declare class WebhookProviderImpl implements WebhookProviderAbstraction.Interface { private readonly webhookFactory; private cache; constructor(webhookFactory: WebhookFactory.Interface[]); execute(): Promise; } export declare const WebhookProvider: typeof WebhookProviderImpl & { __abstraction: import("@webiny/di").Abstraction; }; export {};