export declare class LocaleService {
    private localeSubject;
    locale$: import("rxjs").Observable<Record<string, string>>;
    setLocale(locale: Record<string, string>): void;
    getCurrentLocale(): Record<string, string>;
}
