/** Supported info codes of a subscription event. */ export declare const SubscriptionEventInfoCode: { readonly LocationNotActive: "LOCATION_NOT_ACTIVE"; readonly LocationCannotAcceptPayment: "LOCATION_CANNOT_ACCEPT_PAYMENT"; readonly CustomerDeleted: "CUSTOMER_DELETED"; readonly CustomerNoEmail: "CUSTOMER_NO_EMAIL"; readonly CustomerNoName: "CUSTOMER_NO_NAME"; readonly UserProvided: "USER_PROVIDED"; }; export type SubscriptionEventInfoCode = (typeof SubscriptionEventInfoCode)[keyof typeof SubscriptionEventInfoCode];