import { Actions } from '@ngrx/effects'; import { Action } from '@ngrx/store'; import { Observable } from 'rxjs'; import { ChildCareDetailsService } from '../services/childcare-details.service'; import { SaveChildCare } from '../models/save-child-care-model'; import { SeamsHttpResponse } from '@prutech/components'; import { ProviderReferralListService } from '../services/provider-referral.service'; import { ChildCareDetailsListService } from '../services/childcare-list.service'; import { EmergencyContactService } from '../services/emergency-contact.service'; import { ToastrService } from 'ngx-toastr'; import { AssessmentDetailsService } from '../../ea-ep-assessment-details/services/assessment-details.service'; import * as i0 from "@angular/core"; export declare class ChildcareDetailsEffects { private childrenDetailsService; private childrenDetailsListService; private providerReferralListService; private emergencyContactService; private assessmentDetailsService; private actions$; private toastr; loadChildrenDetails$: Observable; saveChildrenDetails$: Observable; getChildcareAppointmentHistory$: Observable; saveSuccessAction$: Observable<{ saveChildCare: SaveChildCare; isSubmit: boolean; }>; saveFailAction$: Observable; constructor(childrenDetailsService: ChildCareDetailsService, childrenDetailsListService: ChildCareDetailsListService, providerReferralListService: ProviderReferralListService, emergencyContactService: EmergencyContactService, assessmentDetailsService: AssessmentDetailsService, actions$: Actions, toastr: ToastrService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }