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