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