import { UseQueryResult } from '@tanstack/react-query'; import { ChainId, Token } from '@ape.swap/apeswap-lists'; export interface TokenPrices { symbol: string | undefined; address: string | undefined; price: number | undefined; chainId: ChainId | undefined; } export default function useTokenPrices(): UseQueryResult; export declare const getTokenPrices: (realTimeApiURL: string, chains: number[], apiUrl?: string) => Promise; export declare function getTokenPricesV3FromPriceGetter(tokensToCall: Record, chain: ChainId): Promise;