import { HttpClient } from '@angular/common/http'; import { Store } from '@ngrx/store'; import * as fromDemographicUpdates from '../reducers/root-reducer'; import { Observable } from 'rxjs'; import { Environment } from '@prutech/components'; import { SaveDemographicUpdates } from '../models/demographic-updates/save-demographic-updates'; import { DemographicUpdates } from '../models/demographic-updates/demographic-updates'; import * as i0 from "@angular/core"; export declare class DemographicUpdatesService { private http; private store; private environment; demographicUpdates: Observable; demographicUpdatesLoading: Observable; showDemographicUpdatesValidations: Observable; constructor(http: HttpClient, store: Store, environment: Environment); dispatchLoadDemographicUpdates(payload: { enrollmentId: number; isInitial?: boolean; }): void; dispatchSetShowDemographicUpdatesValidations(payload: boolean): void; dispatchSaveDemographicUpdates(payload: SaveDemographicUpdates): void; loadDemographicUpdates(enrollmentId: number): Observable; saveDemographicUpdates(payload: SaveDemographicUpdates): Observable; createNewDemographicUpdates(payload: SaveDemographicUpdates): Observable; updateDemographicUpdates(payload: SaveDemographicUpdates): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }