import React from 'react'; import { Transaction } from '../../transactions/transactionStore'; interface TxProps { tx: Transaction; } export declare function TxItem({ tx }: TxProps): React.JSX.Element; export {};