import type { CurrencyCode } from './currency-helpers'; declare const buildPriceEndpoint: (currency: CurrencyCode) => string; declare const getAddressUnconfirmed: (address: string) => Promise; declare const getTokenInfo: (coinId: string) => Promise; declare const getCurrencyPreSymbol: (currency: CurrencyCode) => string; declare const formatPriceDisplay: (price?: number) => string | undefined; declare const formatAmount: (amount?: number, decimals?: number) => string; declare const priceToSatoshis: (BCHRate: number, price: number) => number; declare const fiatToSatoshis: (currency: CurrencyCode, price: number) => Promise; declare const bchToFiat: (currency: CurrencyCode, price: number) => Promise; declare const adjustAmount: (amount?: number, decimals?: number, fromSatoshis?: boolean) => string | undefined; export { adjustAmount, buildPriceEndpoint, fiatToSatoshis, bchToFiat, formatAmount, formatPriceDisplay, getAddressUnconfirmed, getCurrencyPreSymbol, getTokenInfo, priceToSatoshis };