/** * Creates a price formatter function. * @param amount - The amount to format. * @param currency - The currency to format the price in. * @param locale - The locale to use for formatting. * @param options - Additional options for formatting. * @returns A function that formats a given amount into a price string. */ export declare function formatPrice(amount: number, currency: string, locale: string, options?: Intl.NumberFormatOptions): string;