import type { i18n as I18nInstance } from 'i18next'; export interface AddonI18nResources { /** Addon key — used as the i18next namespace. */ source: string; /** Map of locale → key/value tree. */ resources: Record>; } export interface I18nProviderProps { /** The host's i18next instance. */ i18n: I18nInstance; /** All addon translations contributed via `manifest.i18n`. */ contributions: AddonI18nResources[]; children: React.ReactNode; } export declare function I18nProvider({ i18n, contributions, children }: I18nProviderProps): import("react").JSX.Element; //# sourceMappingURL=i18n-provider.d.ts.map