import { NgxFfmConfig } from './ngx-ffm-config'; import { Observable, Subject } from 'rxjs'; import { HttpClient } from '@angular/common/http'; export declare class NgxFfmService { private ngxFfmConfig; private http; filechange: Subject; constructor(ngxFfmConfig: NgxFfmConfig, http: HttpClient); getDocuments(filepath: any): Promise; getAllFiles(object: any): Promise; convertDocument(object: any): Promise; getDocumentOpen(filename: any, filepath: any): Promise; postDocument(formData: any, filepath: any): Observable; postRegistry(filepath: any, dirname: any): Promise; deleteDocumentLocal(filename: any): Promise; deleteDocument(filenames: any, filepath: any): Observable; setFiles(files: any[]): void; }