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 { EnrollmentInformation } from '../models/enrollment-info/enrollment-information'; import { EnrollmentInformationService } from '../services/enrollment-information.service'; import { StepEnrollmentDetailsService } from '../services/step-enrollment-details.service'; import * as i0 from "@angular/core"; export declare class EnrollmentInformationEffects { private enrollmentInformationService; private stepEnrollmentDetailsService; private actions$; private toastr; loadEnrollmentInformation$: Observable; loadEnrollmentInformationSuccessAction$: Observable<{ data: EnrollmentInformation; isInitial: boolean; }>; saveEnrollmentInformation$: Observable; saveSuccessAction$: Observable<{ enrollmentId: number; }>; saveFailAction$: Observable; constructor(enrollmentInformationService: EnrollmentInformationService, stepEnrollmentDetailsService: StepEnrollmentDetailsService, actions$: Actions, toastr: ToastrService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }