import enUS from "date-fns/locale/en-US"; import type { LangInfo } from "./LangInfo"; import type { Translations, Translate } from "../services/intl/translate"; export declare type IntlRaw = { language: LangInfo; translations: Translations; }; export declare type Intl = IntlRaw & { translate: Translate; getLocale: Promise; }; export declare type IntlsRaw = Record; export declare type Intls = Record; export declare const intlDefault: Intl;