import { LANGUAGE_TYPES } from "../managers/language/constants";
export declare const getLanguage: (el: HTMLElement) => LANGUAGE_TYPES;
/**
 * Detecting of lang is changing on element and on html tag update the language of the component.
 * This is needed because the component is not re-rendered when the lang attribute is changed.
 * Language of the component can be updated without any reloading of the internet page.
 **/
export declare const connectLanguageObserver: (el: HTMLElement, updateLanguageCallback: (language: LANGUAGE_TYPES) => void) => (() => void);
