//#region src/adapter/formatter-cache.d.ts declare function getCachedFormatter(locale: string | undefined, options: Intl.DateTimeFormatOptions): Intl.DateTimeFormat; /** Clears the formatter cache. Useful when switching locales in long-lived SPAs. */ declare function clearFormatterCache(): void; //#endregion export { getCachedFormatter as n, clearFormatterCache as t };