import { HttpClient } from '@angular/common/http'; import { Store } from '@ngrx/store'; import { Observable } from 'rxjs'; import * as fromITARequest from '../reducers/root-reducer'; import { Environment } from '@prutech/components'; import { SaveOpportunityInfo } from '../models/opportunity-info/save-opportunity-info'; import { OpportunityInfo } from '../models/opportunity-info/opportunity-info'; import * as i0 from "@angular/core"; export declare class OpportunityInfoService { private http; private store; private environment; opportunityInfo: Observable; opportunityInfoLoading: Observable; showOpportunityInfoValidations: Observable; constructor(http: HttpClient, store: Store, environment: Environment); dispatchSetShowOpportunityInfoValidations(payload: boolean): void; dispatchLoadOpportunityInfo(payload: { itaRequestId: number; isInitial?: boolean; }): void; dispatchSaveOpportunityInfo(payload: SaveOpportunityInfo): void; loadOpportunityInfo(payload: number): Observable; saveOpportunityInfo(payload: SaveOpportunityInfo): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }