import { Locale } from '../locales'; import { ZCurrency_Props } from './Currency.props'; interface ParseCurrencyOptions { locale?: Locale; decimals?: number; currency?: ZCurrency_Props['currency']; } export declare function parseCurrency(value?: number, options?: ParseCurrencyOptions): string; export {};