import { Transaction } from "@haechi-labs/henesis-wallet-core"; import { EthTransaction } from "@haechi-labs/henesis-wallet-core/lib/eth/abstractWallet"; import { BlockchainType } from "@haechi-labs/henesis-wallet-core/lib/blockchain"; import { TransactionStatus } from "@haechi-labs/henesis-wallet-core/lib/__generate__/eth"; export declare const EXAMPLE_ETHEREUM_TRANSACTION_DTO: TransactionDTO; export declare const EXAMPLE_KLAYTN_TRANSACTION_DTO: TransactionDTO; export declare const EXAMPLE_BINANCE_SMART_CHAIN_TRANSACTION_DTO: TransactionDTO; export declare const EXAMPLE_POLYGON_TRANSACTION_DTO: TransactionDTO; export declare class TransactionDTO { id: string; blockchain: BlockchainType; hash?: string; error?: string; status: TransactionStatus; fee?: string; hopAddress?: string; createdAt: string; updatedAt: string; static fromEthTransaction(transaction: EthTransaction): TransactionDTO; static fromTransaction(transaction: Transaction): TransactionDTO; }