import { HttpClient } from '@angular/common/http'; import { Store } from '@ngrx/store'; import { Observable } from 'rxjs'; import * as fromClientPreferences from '../reducers/root-reducer'; import { Environment } from '@prutech/components'; import { ClientPreferences } from '../models/isp/client-preferences/client-preferences'; import { SaveClientPreferences } from '../models/isp/client-preferences/save-client-preferences'; import * as i0 from "@angular/core"; export declare class ClientPreferencesService { private http; private store; private environment; clientPreferences: Observable; clientPreferencesLoading: Observable; showClientPreferencesValidations: Observable; constructor(http: HttpClient, store: Store, environment: Environment); dispatchSetShowClientPreferencesValidations(payload: boolean): void; dispatchLoadClientPreferences(payload: { assessmentId: number; isInitial?: boolean; }): void; dispatchSaveClientPreferences(payload: SaveClientPreferences): void; loadClientPreferences(assessmentId: number): Observable; saveClientPreferences(payload: SaveClientPreferences): Observable; createClientPreferences(payload: SaveClientPreferences): Observable; updateClientPreferences(payload: SaveClientPreferences): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }