import { StringMap } from '@naturalcycles/js-lib/types'; import { LANG } from '@naturalcycles/shared'; export interface Translations extends StringMap { } export declare const SUPPORTED_LANGUAGES: LANG[]; export declare function setLanguage(rawLang?: LANG): void; export declare function tr(key: string, params?: Record): string;