import { Actions } from '@ngrx/effects'; import { Observable } from 'rxjs'; import { Action } from '@ngrx/store'; import { EducationGoalsDetailsService } from '../../services/education/education-goals-details.service'; import { SeamsHttpResponse } from '@prutech/components'; import { ToastrService } from 'ngx-toastr'; import { SaveEducationGoals } from '../../models/education/education-goals/save-education-goals'; import { EducationGoals } from '../../models/education/education-goals/education-goals'; import { AssessmentDetailsService } from '../../services/assessment-details.service'; import { AssessmentType } from '../../../../constants/assessment-type'; import * as i0 from "@angular/core"; export declare class EducationGoalsDetailsEffects { private educationGoalsDetailsService; private assessmentDetailsService; private actions$; private toastr; loadEducationGoalsDetails$: Observable; loadLanguageDetailsSuccessAction$: Observable<{ data: EducationGoals; isInitial: boolean; assessmentType: AssessmentType; }>; saveEducationGoalsDetails$: Observable; saveSuccessAction$: Observable<{ saveEducationGoals: SaveEducationGoals; assessmentType: AssessmentType; }>; saveFailAction$: Observable; constructor(educationGoalsDetailsService: EducationGoalsDetailsService, assessmentDetailsService: AssessmentDetailsService, actions$: Actions, toastr: ToastrService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }