import { HttpClient, HttpHeaders } from '@angular/common/http';
import { Observable } from 'rxjs';
export declare class NgxImageUploadService {
    private http;
    constructor(http: HttpClient);
    postImage(url: string, image: File, headers?: HttpHeaders | {
        [name: string]: any;
    }, partName?: string, customFormData?: {
        [name: string]: any;
    }, withCredentials?: boolean): Observable<any>;
}
