import type { RaribleImxSdk } from "@rarible/immutable-sdk/src/domain"; import type { UnionAddress } from "@rarible/types"; import type { BigNumberValue } from "@rarible/utils"; import type { RequestCurrency } from "../../common/domain"; import type { IApisSdk } from "../../domain"; export declare class ImxBalanceService { private sdk; private apis; constructor(sdk: RaribleImxSdk, apis: IApisSdk); getBalance(address: UnionAddress, currency: RequestCurrency): Promise; }