import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; export declare class ImageCropService { private http; constructor(http: HttpClient); saveImage(file: Blob | File, sourceImage: string, service: string): Promise; urltoFile(url: any, filename: any, mimeType?: any): Observable; getImage(data: any, service: string, thumbnail: boolean): Promise; buildUrl(service: string, resource: string): string; query(service: string, path: string, body: object): Observable; blobServiceRequestUpload(service: any, file: any): Observable; blobServiceRequestAccess(service: any, fileId: any, thumbnail: any): Observable; blobServiceFileDelete(service: any, fileId: any): Observable; }