/** The transaction type used in the disputed payment. */ export declare const TransactionType: { readonly Debit: "DEBIT"; readonly Credit: "CREDIT"; }; export type TransactionType = (typeof TransactionType)[keyof typeof TransactionType];