import { default as React, ReactNode } from 'react'; import { default as en } from '../locales/en'; export { t } from 'i18next'; export { Trans, useTranslation } from 'react-i18next'; export declare const i18nLocales: readonly ["en-US", "it-IT"]; export type I18NLocale = (typeof i18nLocales)[number]; export type Translation = typeof en; interface I18NProviderProps { /** Optional locale to use for i18n translations that will override the locale set in the user's token. */ enforcedLocaleCode?: I18NLocale; /** * Whether to enable debug mode for i18n. * @default false */ debug?: boolean; /** * The children to render. */ children: ReactNode; } export declare const I18NProvider: React.FC;