/** * * `CREDIT` - CREDIT * * `DEBIT` - DEBIT */ export declare const CreditOrDebitEnum: { readonly Credit: "CREDIT"; readonly Debit: "DEBIT"; }; export type CreditOrDebitEnum = (typeof CreditOrDebitEnum)[keyof typeof CreditOrDebitEnum];