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 { SaveCompletionSurvey } from '../models/completion-survey/save-completion-survey'; import { CompletionSurvey } from '../models/completion-survey/completion-survey'; import * as i0 from "@angular/core"; export declare class CompletionSurveyService { private http; private store; private environment; completionSurvey: Observable; completionSurveyLoading: Observable; showCompletionSurveyValidations: Observable; constructor(http: HttpClient, store: Store, environment: Environment); dispatchSetShowCompletionSurveyValidations(payload: boolean): void; dispatchLoadCompletionSurvey(payload: { itaRequestId: number; isInitial?: boolean; }): void; dispatchSaveCompletionSurvey(payload: SaveCompletionSurvey): void; loadCompletionSurvey(payload: number): Observable; saveCompletionSurvey(payload: SaveCompletionSurvey): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }