import { KeyDTO } from "./key.dto"; import { LtcActivatingMasterWallet } from "@haechi-labs/henesis-wallet-core/lib/ltc/wallet"; import { InactiveMasterWallet, WalletStatus } from "@haechi-labs/henesis-wallet-core/lib/wallet"; import { LtcMasterWallet } from "@haechi-labs/henesis-wallet-core/lib/ltc/wallet"; export declare const EXAMPLE_WALLET_DTO: WalletDTO; export declare class WalletDTO { id: string; name: string; address?: string; encryptionKey?: string; createdAt: string; updatedAt: string; status: WalletStatus; orgId?: string; accountKey?: KeyDTO; whitelistActivated: boolean; static fromMasterWallet(wallet: LtcMasterWallet): WalletDTO; static fromLTCMasterWallet(wallet: LtcMasterWallet): WalletDTO; static fromInactiveMasterWallet(wallet: InactiveMasterWallet): WalletDTO; static fromActivatingMasterWallet(wallet: LtcActivatingMasterWallet): WalletDTO; }