import { BalanceDTO } from "./balance.dto"; import { Balance } from "@haechi-labs/henesis-wallet-core/lib/types"; export declare const EXAMPLE_FILECOIN_MASTER_WALLET_BALANCE_DTO: MasterWalletBalanceDto; export declare class MasterWalletBalanceDto extends BalanceDTO { aggregatedAmount: string; static fromBalance(balance: Balance): MasterWalletBalanceDto; static fromBalances(balances: Balance[]): MasterWalletBalanceDto[]; }