/** Indicates the status of a [loyalty promotion](entity:LoyaltyPromotion). */ export declare const LoyaltyPromotionStatus: { readonly Active: "ACTIVE"; readonly Ended: "ENDED"; readonly Canceled: "CANCELED"; readonly Scheduled: "SCHEDULED"; }; export type LoyaltyPromotionStatus = (typeof LoyaltyPromotionStatus)[keyof typeof LoyaltyPromotionStatus];