import { PluginObject } from 'vue'; import { MCurrencyType } from '../../utils/money/money'; export interface FormatCurrencyOptions { currency: MCurrencyType; stripDecimalZeroes?: boolean; } export declare function formatCurrency(money: number, currency: MCurrencyType): string; export declare function formatCurrencyWithOptions(money: number, options: FormatCurrencyOptions): string; declare const MoneyPlugin: PluginObject; export default MoneyPlugin; //# sourceMappingURL=money.d.ts.map