import BigNumber from 'bignumber.js'; import { Token } from '../utils/token'; /** * Get the USD price of a token * @param token The token to get the price of * @param stableToken The optional stable token to compare the price in * @returns The price of the token in BigNumber (decimal parsed). Returns null if empty or loading */ export declare const useUSDPrice: (token: Token, stableToken?: Token) => BigNumber; /** * Get the USD price of a token by address * @param address The address of the token to get the price of * @returns The price of the token in BigNumber (decimal parsed). Returns null if empty or loading */ export declare const useUSDPriceByAddress: (address?: string) => BigNumber; //# sourceMappingURL=useUSDPrice.d.ts.map