import { en } from "./languages/en"; export type I18NTranslation = typeof en; export type Locale = { languageCode: string | null; }; export declare const i18n: (locale: Locale | undefined) => I18NTranslation;