import type { Client } from '../../clients/createClient.js'; import type { Transport } from '../../clients/transports/createTransport.js'; import type { BlockTag } from '../../strk-types/lib.js'; import type { Chain } from '../../types/chain.js'; export type GetBalanceParameters = { address: string; blockNumber?: number; blockTag?: BlockTag; }; export type GetBalanceReturnTypes = { balance: number; decimals: number; symbol: string; formatted: string; }; export type GetBalanceErrorType = any; export declare function getBalance(client: Client, parameter: GetBalanceParameters): Promise; //# sourceMappingURL=getBalance.d.ts.map