export declare enum DeliveryStrategy { AllOrNothing = "all-or-nothing", BestEffort = "best-effort" } export interface NotificationResult { status: 'success' | 'partial' | 'failed'; results: Map; errors: Map; } //# sourceMappingURL=delivery-strategy.type.d.ts.map