import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { IImageUpload } from './interface/upload.interface'; export declare class ImageService { private http; api: string; API_URL: string; constructor(http: HttpClient, config: any); fetchList(): Observable; searchImages(imageStr: string): Observable; saveImages(files: File[]): Observable; saveImagesByUrl(image: any): Observable; }