import { Currency, MoneyAmount, SUPPORTED_CURRENCIES } from "./currency-constants"; //#region src/utils/currencies.d.ts type SupportedCurrency = (typeof SUPPORTED_CURRENCIES)[number]; declare function moneyAmountToStripeUnits(amount: MoneyAmount, currency: Currency): number; //#endregion export { SupportedCurrency, moneyAmountToStripeUnits }; //# sourceMappingURL=currencies.d.ts.map