import Observer from "../../../utils/observer/Observer"; export default class IntlProvider extends Observer { /** * The current language set in the provider */ lang: string; /** * The data with the translation */ data: any; constructor( /** * The current language set in the provider */ lang: string, /** * The data with the translation */ data: any); setLanguage(lang: string): void; /** * Retrieves the translated text or returns a string with the key value if the translation was not found */ getTranslation(lang: string | undefined, key: string): string; } //# sourceMappingURL=IntlProvider.d.ts.map