import { HttpClient } from "@angular/common/http"; import { Observable } from "rxjs"; import { DocumentHistory } from 'ng-pli-util'; import * as i0 from "@angular/core"; export declare class DocumentHistoryService { private environment; private httpClient; private headerJson; constructor(environment: any, httpClient: HttpClient); /** It returns the document history by documentId and applicationId */ getByDocumentIdAndApplicationId(documentId: string, applicationId: string): Observable; /** It returns the document history by list documentId and applicationId */ getByDocumentIdInAndApplicationId(listDocumentId: Array, applicationId: string): Observable; /** It saves a document history */ save(documentHistory: DocumentHistory): Observable; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }