import { TransactionOutputDto } from "./transaction-output.dto"; import { BtcTransaction } from "@haechi-labs/henesis-wallet-core/lib/btc/wallet"; export declare const EXAMPLE_TRANSACTION_DTO: TransactionDto; export declare class TransactionDto { id: string; transactionHash: string; blockNumber?: string; amount: string; feeAmount?: string; createdAt: string; updatedAt: string; hex: string; outputs: TransactionOutputDto[]; static fromBTCTransaction(transaction: BtcTransaction): TransactionDto; }