/** * Indicates the type of points incentive for a [loyalty promotion](entity:LoyaltyPromotion), * which is used to determine how buyers can earn points from the promotion. */ export declare const LoyaltyPromotionIncentiveType: { readonly PointsMultiplier: "POINTS_MULTIPLIER"; readonly PointsAddition: "POINTS_ADDITION"; }; export type LoyaltyPromotionIncentiveType = (typeof LoyaltyPromotionIncentiveType)[keyof typeof LoyaltyPromotionIncentiveType];