import { Language } from '../../language/Language';
type I18nContextValue = {
    i18n: Language;
    setLocale: (locale: string) => void;
};
export declare const I18nContext: import("preact").Context<I18nContextValue>;
/**
 * @deprecated in favor of I18next's `useTranslation`
 */
export declare const useI18nContext: () => I18nContextValue;
export {};
