/** The type of the loyalty event. */ export declare const LoyaltyEventType: { readonly AccumulatePoints: "ACCUMULATE_POINTS"; readonly CreateReward: "CREATE_REWARD"; readonly RedeemReward: "REDEEM_REWARD"; readonly DeleteReward: "DELETE_REWARD"; readonly AdjustPoints: "ADJUST_POINTS"; readonly ExpirePoints: "EXPIRE_POINTS"; readonly Other: "OTHER"; readonly AccumulatePromotionPoints: "ACCUMULATE_PROMOTION_POINTS"; }; export type LoyaltyEventType = (typeof LoyaltyEventType)[keyof typeof LoyaltyEventType];