import { Actions } from '@ngrx/effects'; import { Action } from '@ngrx/store'; import { Observable } from 'rxjs'; import { SeamsHttpResponse } from '@prutech/components'; import { ToastrService } from 'ngx-toastr'; import { AssessmentDetailsService } from '../../services/assessment-details.service'; import { TabeScore } from '../../models/education/tabe-score/tabe-score'; import { TabeScoreService } from '../../services/education/tabe-score.service'; import { SaveTabeScore } from '../../models/education/tabe-score/save-tabe-score'; import { AssessmentType } from '../../../../constants/assessment-type'; import * as i0 from "@angular/core"; export declare class TabeScoreDetailsEffects { private tabeScoreService; private assessmentDetailsService; private actions$; private toastr; loadTabeScoreDetails$: Observable; loadTabeScoreSuccessAction$: Observable<{ tabeScore: TabeScore; isInitial: boolean; }>; saveTabeScoreDetails$: Observable; saveSuccessAction$: Observable<{ saveTabeScore: SaveTabeScore; assessmentType: AssessmentType; }>; saveFailAction$: Observable; constructor(tabeScoreService: TabeScoreService, assessmentDetailsService: AssessmentDetailsService, actions$: Actions, toastr: ToastrService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }