import type { Translation } from "@intl-t/core"; import type { Locale } from "@intl-t/locales"; export interface Cache { locale: Locale; t: Translation; } export declare const getCache: () => Partial; export declare function getCachedRequestLocale(): L | undefined; export declare function setCachedRequestLocale(locale: L): L; export { getCachedRequestLocale as getCacheLocale, setCachedRequestLocale as setCacheLocale };