import type { UmbWebhookEventModel } from '../types.js'; import { UmbContextToken } from '../../../../libs/context-api/index.js'; import { UmbStoreBase } from '../../../core/store/index.js'; import type { UmbControllerHost } from '../../../../libs/controller-api/index.js'; /** * @class UmbWebhookEventStore * @augments {UmbStoreBase} * @description - Data Store for Webhook Events */ export declare class UmbWebhookEventStore extends UmbStoreBase { /** * Creates an instance of UmbWebhookEventStore. * @param {UmbControllerHost} host - The controller host for this controller to be appended to * @memberof UmbWebhookEventStore */ constructor(host: UmbControllerHost); } export default UmbWebhookEventStore; export declare const UMB_WEBHOOK_EVENT_STORE_CONTEXT: UmbContextToken;