import React from 'react'; import type { I18nConfig, I18nContextValue } from './types'; export interface I18nProviderProps { initial?: Partial; children: React.ReactNode; } export declare const I18nProvider: React.FC; export declare function useI18n(): I18nContextValue;