import { MoneyAmount, CurrencyCode } from './types.js'; /** * F136 Phase 1 — Currency formatting helpers. * * Used by both server-side (storefront page renderer) and client-side * (cart island totals). Lives in /islands so islands can import without * pulling Stripe-SDK code into the browser bundle. */ declare function formatMoney(amount: MoneyAmount, currency: CurrencyCode, locale?: string): string; export { formatMoney as f };