import { BalancesResponse, GasPriceResponse, PriceResponse } from '../utils/AarcTypes'; /** * @description this function will return balances of ERC-20, ERC-721 and native tokens * @param balancesDto * @returns */ export declare const fetchBalances: (apiKey: string, chainId: number, eoaAddress: string, fetchBalancesOnly?: boolean, tokenAddresses?: string[]) => Promise; export declare const fetchNativeToUsdPrice: (chainId: number) => Promise; export declare const fetchGasPrice: (chainId: number) => Promise;