/// import { CustomTranslationObject } from '../../types'; type I18nProviderProps = { children: React.ReactNode; userLanguage?: string; customTranslations?: (CustomTranslationObject | CustomTranslationObject[])[]; }; export declare const I18nProvider: ({ children, userLanguage, customTranslations, }: I18nProviderProps) => import("react/jsx-runtime").JSX.Element | null; export {};