import { LocaleService, TranslationService } from 'angular-l10n'; import { ComponentLocalizationsModel } from './component-localizations.model'; export declare class SkyContribLocaleService { locale: LocaleService; translation: TranslationService; translationDict: { [localeKey: string]: any; }; componentLocalizations: ComponentLocalizationsModel; languageCode: string; constructor(locale: LocaleService, translation: TranslationService); initializeComponentLocalizations(localizations?: ComponentLocalizationsModel): void; currentLanguage: string; changeActiveLocale(langCode: string): void; setCurrentLocale(userLang: string): void; getDefaultLocale(): string; getCurrentCurrency(): string; private formatLocale(locale); }