/** * The list of possible reasons why a cardholder might initiate a * dispute with their bank. */ export declare const DisputeReason: { readonly AmountDiffers: "AMOUNT_DIFFERS"; readonly Cancelled: "CANCELLED"; readonly Duplicate: "DUPLICATE"; readonly NoKnowledge: "NO_KNOWLEDGE"; readonly NotAsDescribed: "NOT_AS_DESCRIBED"; readonly NotReceived: "NOT_RECEIVED"; readonly PaidByOtherMeans: "PAID_BY_OTHER_MEANS"; readonly CustomerRequestsCredit: "CUSTOMER_REQUESTS_CREDIT"; readonly EmvLiabilityShift: "EMV_LIABILITY_SHIFT"; }; export type DisputeReason = (typeof DisputeReason)[keyof typeof DisputeReason];