import { KeyDTO } from "./key.dto"; import { BtcActivatingMasterWallet, BtcMasterWallet } from "@haechi-labs/henesis-wallet-core/lib/btc/wallet"; import { InactiveMasterWallet, WalletStatus } from "@haechi-labs/henesis-wallet-core/lib/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: BtcMasterWallet): WalletDTO; static fromInactiveMasterWallet(wallet: InactiveMasterWallet): WalletDTO; static fromBTCActivatingMasterWallet(wallet: BtcActivatingMasterWallet): WalletDTO; }