/** Indicates the reason for deducting money from a [gift card](entity:GiftCard). */ export declare const GiftCardActivityAdjustDecrementReason: { readonly SuspiciousActivity: "SUSPICIOUS_ACTIVITY"; readonly BalanceAccidentallyIncreased: "BALANCE_ACCIDENTALLY_INCREASED"; readonly SupportIssue: "SUPPORT_ISSUE"; readonly PurchaseWasRefunded: "PURCHASE_WAS_REFUNDED"; }; export type GiftCardActivityAdjustDecrementReason = (typeof GiftCardActivityAdjustDecrementReason)[keyof typeof GiftCardActivityAdjustDecrementReason];