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 { OpportunityInfo } from '../models/opportunity-info/opportunity-info'; import { SaveOpportunityInfo } from '../models/opportunity-info/save-opportunity-info'; import { OpportunityInfoService } from '../services/opportunity-info.service'; import { ITARequestDetailsService } from '../services/ita-request-details.service'; import * as i0 from "@angular/core"; export declare class OpportunityInfoEffects { private opportunityInfoService; private actions$; private itaRequestDetailsService; private toastr; loadOpportunityInfo$: Observable; loadOpportunityInfoSuccessAction$: Observable<{ data: OpportunityInfo; isInitial: boolean; }>; saveOpportunityInfo$: Observable; saveSuccessAction$: Observable; saveFailAction$: Observable; constructor(opportunityInfoService: OpportunityInfoService, actions$: Actions, itaRequestDetailsService: ITARequestDetailsService, toastr: ToastrService); static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }