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