import Decimal from "decimal.js"; import { Universe } from "../proto/definition"; import { Bytes } from "../types"; import { OmniversalChainID } from "../data"; export type BalanceOnChain = { chainID: OmniversalChainID; totalValue: Decimal; currencywise: { tokenAddress: Buffer; amount: Decimal; value: Decimal; }[]; }; export declare function getBalances(vscURL: string, universe: Universe, address: Bytes): Promise;