import { Locale } from "@/types"; export declare function currencyFormatter(locale?: Locale, precision?: number): Intl.NumberFormat; export declare function dateFormatter(locale: Locale): { format: (date: Date) => string; };