import type { Core } from "../.."; /** * Format and translate a string date from a `DateField` (YY/MM/DD) into * differentes Locales. You can pass an option object Intl.DateTimeFormatOptions * to customize the output. * * @example * formatLocaleDate({ dateString: "2023/08/06", locale: "es-ES"}) * // { date: "6 Agosto 2023", dateTime: "2023-08-06" } */ declare function formatLocaleDate(inputDate: string, locale: Core.ISOLocale, options?: Intl.DateTimeFormatOptions): { date: string; dateTime: string; }; export { formatLocaleDate };