import { BigNumber } from "@arkecosystem/platform-sdk-support"; import { IProfile, IWalletAggregate } from "./contracts"; declare type NetworkType = "live" | "test"; export declare class WalletAggregate implements IWalletAggregate { #private; constructor(profile: IProfile); /** {@inheritDoc IWalletAggregate.balance} */ balance(networkType?: NetworkType): number; /** {@inheritDoc IWalletAggregate.balancesByNetworkType} */ balancesByNetworkType(): Record; /** {@inheritDoc IWalletAggregate.convertedBalance} */ convertedBalance(): number; /** {@inheritDoc IWalletAggregate.balancePerCoin} */ balancePerCoin(networkType?: NetworkType): Record; } export {};