import { BigNumberish } from "starknet"; import { ApiData } from "../http/apiData"; import { TokenWithBalance } from "./token"; /** @returns price and token data which will be cached and refreshed periodically by SWR */ /** @returns individual price details for the token */ export declare const useTokenPriceDetails: (token?: TokenWithBalance, apiData?: ApiData) => import("./price").ApiPriceDetails | null | undefined; /** * Converts the amount of token into currecy value * * @returns currency value */ export declare const useTokenAmountToCurrencyValue: (token?: TokenWithBalance, amount?: BigNumberish, apiData?: ApiData) => string | undefined;