import { ICartItemPrices } from '../Interfaces/Cart'; import Space from '../lib/Space'; export declare const calculateAmountByCurrency: (space: Space, currencyLabel: string, amount: number, fromCurrency?: string) => string | number; export declare const calculateAmountByCurrencyAllDetails: (space: Space, currencyLabel: string, amount: number, fromCurrency?: string) => ICartItemPrices; export declare const allPossibleAmountByActiveCurrencies: (space: Space, amount: number) => ICartItemPrices[]; export declare const moneyFormat: (amount: number, currency?: string, showZeros?: boolean, alwaysUseDots?: boolean) => string;