import { Actions } from '@ngrx/effects'; import { Observable } from 'rxjs'; import { Action } from '@ngrx/store'; import { LanguageProficiencyDetails } from '../../models/education/language/language-proficiency-details'; import { SeamsHttpResponse } from '@prutech/components'; import { SaveLanguageProficiency } from '../../models/education/language/save-language-proficiency'; import { ToastrService } from 'ngx-toastr'; import { LanguageProficiencyService } from '../../services/education/language-proficiency.service'; import { AssessmentDetailsService } from '../../services/assessment-details.service'; import { AssessmentType } from '../../../../constants/assessment-type'; import * as i0 from "@angular/core"; export declare class LanguageProficiencyEffects { private languageProficiencyService; private assessmentDetailsService; private actions$; private toastr; loadLanguageDetails$: Observable; loadLanguageDetailsSuccessAction$: Observable<{ data: LanguageProficiencyDetails; isInitial: boolean; }>; saveLanguageDetails$: Observable; saveSuccessAction$: Observable<{ saveLanguageProficiency: SaveLanguageProficiency; assessmentType: AssessmentType; }>; saveFailAction$: Observable; constructor(languageProficiencyService: LanguageProficiencyService, assessmentDetailsService: AssessmentDetailsService, actions$: Actions, toastr: ToastrService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }