import { ClientSDK, RequestOptions } from "../lib/sdks.js"; import * as operations from "../models/operations/index.js"; export declare class Notifications extends ClientSDK { /** * List all events * * @remarks * List all notification events (triggered events) for the current environment. * This API supports filtering by **channels**, **templates**, **emails**, **subscriberIds**, **transactionId**, **topicKey**, **severity**, **contextKeys**. * Checkout all available filters in the query section. * This API returns event triggers, to list each channel notifications, check messages APIs. */ list(request: operations.NotificationsControllerListNotificationsRequest, options?: RequestOptions): Promise; /** * Retrieve an event * * @remarks * Retrieve an event by its unique key identifier **notificationId**. * Here **notificationId** is of mongodbId type. * This API returns the event details - execution logs, status, actual notification (message) generated by each workflow step. */ retrieve(notificationId: string, idempotencyKey?: string | undefined, options?: RequestOptions): Promise; } //# sourceMappingURL=notifications.d.ts.map