import { TransactionDto } from "./transaction.dto"; import { Transfer } from "@haechi-labs/henesis-wallet-core/lib/ltc/transfers"; import { TransferStatus, TransferType } from "@haechi-labs/henesis-wallet-core/lib/__generate__/ltc"; export declare const EXAMPLE_TRANSFER_DTO: TransferDTO; export declare class TransferDTO { transaction?: TransactionDto; walletId: string; amount: string; status: TransferStatus; id: string; outputIndex?: number; receivedAt?: string; sendTo?: string; withdrawalApprovalId?: string; type: TransferType; createdAt: string; updatedAt: string; feeAmount?: string; confirmation: string; metadata?: string; static fromTransfer(transfer: Transfer): TransferDTO; }