/** The status of the loyalty reward. */ export declare const LoyaltyRewardStatus: { readonly Issued: "ISSUED"; readonly Redeemed: "REDEEMED"; readonly Deleted: "DELETED"; }; export type LoyaltyRewardStatus = (typeof LoyaltyRewardStatus)[keyof typeof LoyaltyRewardStatus];