import { ChurnbusterEventType, DevicePlatform } from '../types/enums'; export declare const platformArray: readonly [DevicePlatform.shopify, DevicePlatform.braintree, DevicePlatform.acumatica, DevicePlatform.klarna, DevicePlatform.amazon, DevicePlatform.braintree_amazon, DevicePlatform.demo, DevicePlatform.stripe, DevicePlatform.stripe_amazon, DevicePlatform.oem]; export type Platform = (typeof platformArray)[number]; export declare const eventTypeArray: readonly [ChurnbusterEventType.campaign_started, ChurnbusterEventType.email_bounced, ChurnbusterEventType.campaign_recovered, ChurnbusterEventType.campaign_lost, ChurnbusterEventType.campaign_won]; export type EventType = (typeof eventTypeArray)[number]; export declare class BillingDunning { subscriptionId: string; customerId: string; email: string | null; platform: Platform; eventType: EventType; churnBusterId: string; captureUrl: string; createdAt: Date | null; updatedAt: Date | null; }