import { Balance } from "@haechi-labs/henesis-wallet-core/lib/types"; export declare const EXAMPLE_BALANCE_DTO: BalanceDTO; export declare class BalanceDTO { coinType: string; amount: string; spendableAmount?: string; aggregatedAmount?: string; name: string; symbol: string; static fromBalance(balance: Balance): BalanceDTO; }