import { Actions } from '@ngrx/effects'; import { Observable } from 'rxjs'; import { Action } from '@ngrx/store'; import { SeamsHttpResponse } from '@prutech/components'; import { ToastrService } from 'ngx-toastr'; import { DemographicUpdates } from '../models/demographic-updates/demographic-updates'; import { DemographicUpdatesService } from '../services/demographic-updates.service'; import { StepEnrollmentDetailsService } from '../services/step-enrollment-details.service'; import * as i0 from "@angular/core"; export declare class DemographicUpdatesEffects { private demographicUpdatesService; private stepEnrollmentDetailsService; private actions$; private toastr; loadDemographicUpdates$: Observable; loadDemographicUpdatesSuccessAction$: Observable<{ data: DemographicUpdates; isInitial: boolean; }>; saveDemographicUpdates$: Observable; saveSuccessAction$: Observable<{ enrollmentId: number; }>; saveFailAction$: Observable; constructor(demographicUpdatesService: DemographicUpdatesService, stepEnrollmentDetailsService: StepEnrollmentDetailsService, actions$: Actions, toastr: ToastrService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }