import { EthDepositAddress } from "@haechi-labs/henesis-wallet-core/lib/eth/depositAddress"; import { BlockchainType } from "@haechi-labs/henesis-wallet-core/lib/blockchain"; export declare const EXAMPLE_ETHEREUM_DEPOSIT_ADDRESS_DTO: DepositAddressDTO; export declare class DepositAddressDTO { id: string; address: string; name: string; blockchain: BlockchainType; createdAt: string; updatedAt: string; version: string; static fromEthDepositAddress(address: EthDepositAddress): DepositAddressDTO; }