import { WalletStatus } from "@haechi-labs/henesis-wallet-core/lib/wallet"; import { EthWallet } from "@haechi-labs/henesis-wallet-core/lib/eth/wallet"; import { BlockchainType } from "@haechi-labs/henesis-wallet-core/lib/blockchain"; export declare const EXAMPLE_ETHEREUM_WALLET_DTO: WalletDTO; export declare const EXAMPLE_BINANCE_SMART_CHAIN_WALLET_DTO: WalletDTO; export declare class WalletDTO { id: string; name: string; address: string; blockchain: BlockchainType; createdAt: string; updatedAt: string; status: WalletStatus; whitelistActivated?: boolean; version?: string; static fromEthWallet(wallet: EthWallet): WalletDTO; }