import { Locale } from "./types/locale"; import { NumberFormatMoney } from "./types/numberFormatMoney"; export declare function formatMoney(value: number, precision?: number, locale?: Locale): string; export declare function formatMoney(value: number, options?: Partial, locale?: Locale): string;