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 { ProgramCost } from '../models/program-cost/program-cost'; import { SaveProgramCost } from '../models/program-cost/save-program-cost'; import { ProgramCostService } from '../services/program-cost.service'; import { ITARequestDetailsService } from '../services/ita-request-details.service'; import * as i0 from "@angular/core"; export declare class ProgramCostEffects { private programCostService; private actions$; private itaRequestDetailsService; private toastr; loadProgramCost$: Observable; loadProgramCostSuccessAction$: Observable<{ data: ProgramCost; isInitial: boolean; }>; saveProgramCost$: Observable; saveSuccessAction$: Observable; saveFailAction$: Observable; constructor(programCostService: ProgramCostService, actions$: Actions, itaRequestDetailsService: ITARequestDetailsService, toastr: ToastrService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }