/** * Indicates the time period that the [trigger limit](entity:LoyaltyPromotionTriggerLimit) applies to, * which is used to determine the number of times a buyer can earn points for a [loyalty promotion](entity:LoyaltyPromotion). */ export declare const LoyaltyPromotionTriggerLimitInterval: { readonly AllTime: "ALL_TIME"; readonly Day: "DAY"; }; export type LoyaltyPromotionTriggerLimitInterval = (typeof LoyaltyPromotionTriggerLimitInterval)[keyof typeof LoyaltyPromotionTriggerLimitInterval];