/**
 * Enum for storing transaction type
 */
declare enum TransactionType {
    CREDIT = "credit",
    DEBIT = "debit"
}
export { TransactionType as default };
