import { ValueTransferEvent } from "@haechi-labs/henesis-wallet-core/lib/events"; import { EventStatus, TransferType } from "@haechi-labs/henesis-wallet-core/lib/__generate__/eth"; export declare const EXAMPLE_ETHEREUM_TRANSFER_DTO: TransferDTO; export declare const EXAMPLE_BINANCE_SMART_CHAIN_TRANSFER_DTO: TransferDTO; export declare class TransferDTO { id: number; "from": string; to: string; amount: string; status: EventStatus; orgId: string; decimals: number; walletId: string; depositAddressId: string; ticker: string; transferType: TransferType; transactionId: string; transactionHash: string; hopTransactionId: string; hopTransactionHash: string; createdAt: string; updatedAt: string; name: string; metadata?: string; static fromValueTransferEvent(event: ValueTransferEvent): TransferDTO; }