import { PredictionsApi, PredictionPaging, ReviewStatus } from '@alfresco/js-api'; import { Observable } from 'rxjs'; import * as i0 from "@angular/core"; export declare class PredictionService { private readonly apiService; private _predictionsApi; get predictionsApi(): PredictionsApi; /** * Get predictions for a given node * * @param nodeId The identifier of node. * @returns Observable */ getPredictions(nodeId: string): Observable; /** * Review a prediction * * @param predictionId The identifier of prediction. * @param reviewStatus Review status to apply. * @returns Observable */ reviewPrediction(predictionId: string, reviewStatus: ReviewStatus): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }