export declare const defaultLang = "az"; export declare const supportedLangs: string[]; export declare type TLang = 'az' | 'en' | string; interface ITranslationParam { [key: string]: string; } export declare let lang: TLang; export declare const translationInit: () => Promise; export declare const changeLang: (lng?: string) => void; export declare const translate: (value?: string, params?: ITranslationParam) => any; export {};