import { ReactNode } from 'react'; import { I18nClient } from '../i18nClient'; export interface I18nProviderProps { i18n: I18nClient; sortBy?: "language" | "region"; children?: ReactNode | ReactNode[]; } export declare const I18nProvider: ({ i18n, sortBy, children, }: I18nProviderProps) => JSX.Element; export declare const i18nProvider: ({ i18n, sortBy, children, }: I18nProviderProps) => JSX.Element;