interface PriceFormatOptions extends Partial> { withoutSymbol?: boolean; customSymbol?: string; } declare const formatPrice: (price: number, locale: string, currency?: string, { withoutSymbol, customSymbol, ...options }?: PriceFormatOptions) => string; export { formatPrice }; export type { PriceFormatOptions };