import { Balance } from "@haechi-labs/henesis-wallet-core/lib/types"; export declare const EXAMPLE_ETHEREUM_BALANCE_DTO: BalanceDTO; export declare const EXAMPLE_ETHEREUM_MASTER_WALLET_BALANCE_DTO: MasterWalletBalanceDTO; export declare const EXAMPLE_BINANCE_SMART_CHAIN_BALANCE_DTO: BalanceDTO; export declare const EXAMPLE_BINANCE_SMART_CHAIN_MASTER_WALLET_BALANCE_DTO: BalanceDTO; export declare class BalanceDTO { coinId: number; amount: string; spendableAmount: string; name: string; ticker: string; decimals: number; static fromBalance(balance: Balance): BalanceDTO; } export declare class MasterWalletBalanceDTO extends BalanceDTO { aggregatedAmount: string; static fromBalance(balance: Balance): MasterWalletBalanceDTO; }