import { Observable } from 'rxjs';
import { LocalStorageService } from './local-storage.service';
import { SettingsModel } from '../_models/settings.model';
import * as i0 from "@angular/core";
export declare class SettingsService {
    private lsService;
    private readonly LS_SETTINGS;
    private settings$;
    constructor(lsService: LocalStorageService);
    newSettings(settings: SettingsModel): void;
    onNewSettings(): Observable<SettingsModel>;
    getSettings(): SettingsModel;
    static ɵfac: i0.ɵɵFactoryDeclaration<SettingsService, never>;
    static ɵprov: i0.ɵɵInjectableDeclaration<SettingsService>;
}
