import Big from 'big.js'; import { VsCurrencyType } from '@avalabs/core-coingecko-sdk'; /** * Returns the price of the input currency (default is USD) * @param assetId id of the asset on coingecko, not matches the symbol * @param currency currency you want the result to be in, default is 'usd' */ declare function usePrice(assetId: string | undefined, currency?: VsCurrencyType): Big; export { usePrice };