import { default as React } from 'react'; import { Language, Translations, I18nContextType, I18nProviderProps } from './types'; export declare const I18nProvider: React.FC; export declare const useI18n: () => I18nContextType; export declare const i18nInsidePlaitHook: () => { t: (key: keyof Translations) => string; language: Language; }; export type { Language, Translations, I18nContextType };