export type CurrencyCode = "KHR" | "USD" | "THB" | string; export declare function formatMoney(amount: number | string | null | undefined, code?: CurrencyCode, options?: { decimals?: number; showCode?: boolean; useSymbol?: boolean; }): string; export declare const defaultFormatMoney: typeof formatMoney; //# sourceMappingURL=currency.d.ts.map