import { BigNumberish } from "starknet"; export interface IConvertTokenAmountToCurrencyValue { /** the token decimal amount */ amount: BigNumberish; /** number of decimals used in token amount */ decimals: BigNumberish; /** the currency value of 1 unit of token */ unitCurrencyValue: number | string; } /** * Converts a token amount and decimals into a final currency value, returning a raw string with many decimals */ export declare const convertTokenAmountToCurrencyValue: ({ amount, decimals, unitCurrencyValue, }: IConvertTokenAmountToCurrencyValue) => string | undefined;