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 { ChildSupport } from '../../models/special-circumstances/child-support/child-support'; import { SaveChildSupport } from '../../models/special-circumstances/child-support/save-child-support'; import { ChildSupportDetailsService } from '../../services/special-circumstances/child-support.service'; import { AssessmentDetailsService } from '../../services/assessment-details.service'; import { AssessmentType } from '../../../../constants/assessment-type'; import * as i0 from "@angular/core"; export declare class ChildSupportDetailsEffects { private childSupportDetailsService; private assessmentDetailsService; private actions$; private toastr; loadChildSupportDetails$: Observable; loadChildSupportSuccessAction$: Observable<{ childSupport: ChildSupport; isInitial: boolean; }>; saveChildSupportDetails$: Observable; saveSuccessAction$: Observable<{ saveChildSupport: SaveChildSupport; assessmentType: AssessmentType; }>; saveFailAction$: Observable; constructor(childSupportDetailsService: ChildSupportDetailsService, assessmentDetailsService: AssessmentDetailsService, actions$: Actions, toastr: ToastrService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }