/** Supported types of an event occurred to a subscription. */ export declare const SubscriptionEventSubscriptionEventType: { readonly StartSubscription: "START_SUBSCRIPTION"; readonly PlanChange: "PLAN_CHANGE"; readonly StopSubscription: "STOP_SUBSCRIPTION"; readonly DeactivateSubscription: "DEACTIVATE_SUBSCRIPTION"; readonly ResumeSubscription: "RESUME_SUBSCRIPTION"; readonly PauseSubscription: "PAUSE_SUBSCRIPTION"; readonly BillingAnchorDateChanged: "BILLING_ANCHOR_DATE_CHANGED"; }; export type SubscriptionEventSubscriptionEventType = (typeof SubscriptionEventSubscriptionEventType)[keyof typeof SubscriptionEventSubscriptionEventType];