export * from "./classify.js"; export * from "./decimals.js"; export * from "./money.js"; export * from "./percent.js"; export * from "./symbols.js"; export * from "./usd.js"; import { areEquivalent, getVariations, isCrypto, isFiat, isStablecoin, normalize } from "./classify.js"; import { getOptimalDecimals } from "./decimals.js"; import { btc, eth, money } from "./money.js"; import { basisPointsToPercent, formatBasisPoints, percentageChange, percentageDiff, percentageOf, percentToBasisPoints } from "./percent.js"; import { getSymbol } from "./symbols.js"; import { usd, usdIntlOptions } from "./usd.js"; export declare const currency: { getSymbol: typeof getSymbol; getOptimalDecimals: typeof getOptimalDecimals; normalize: typeof normalize; areEquivalent: typeof areEquivalent; getVariations: typeof getVariations; isCrypto: typeof isCrypto; isStablecoin: typeof isStablecoin; isFiat: typeof isFiat; percentageOf: typeof percentageOf; percentageChange: typeof percentageChange; percentageDiff: typeof percentageDiff; basisPointsToPercent: typeof basisPointsToPercent; percentToBasisPoints: typeof percentToBasisPoints; formatBasisPoints: typeof formatBasisPoints; usd: typeof usd; usdIntlOptions: typeof usdIntlOptions; btc: typeof btc; eth: typeof eth; money: typeof money; symbols: { readonly BTC: "₿"; readonly XBT: "₿"; readonly ETH: "Ξ"; readonly USD: "$"; readonly EUR: "€"; readonly GBP: "£"; readonly JPY: "¥"; readonly CNY: "¥"; readonly KRW: "₩"; readonly INR: "₹"; readonly RUB: "₽"; readonly TRY: "₺"; readonly AUD: "A$"; readonly CAD: "C$"; readonly CHF: "Fr"; readonly HKD: "HK$"; readonly SGD: "S$"; readonly NZD: "NZ$"; readonly SEK: "kr"; readonly NOK: "kr"; readonly DKK: "kr"; readonly PLN: "zł"; readonly THB: "฿"; readonly USDT: "₮"; readonly USDC: "$"; readonly DAI: "$"; readonly BUSD: "$"; }; }; //# sourceMappingURL=index.d.ts.map