import { WalletStatus } from "@haechi-labs/henesis-wallet-core/lib/wallet"; import { BlockchainType } from "@haechi-labs/henesis-wallet-core/lib/blockchain"; export declare const EXAMPLE_ETH_KLAY_WALLET_DTO: WalletDTO; export declare class WalletDTO { id: string; name: string; address: string; createdAt: string; updatedAt: string; status: WalletStatus; blockchain: BlockchainType; version?: string; transactionId?: string | null; error?: string | null; }