import type { Transaction } from './Transaction';
export type Transactions = {
    transactions: Array<Transaction>;
};
