/**
 * @license
 * Copyright ASW (A Software World) All Rights Reserved.
 *
 * Use of this source code is governed by an MIT-style license that can be
 * found in the LICENSE file
 */
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs';
import * as i0 from "@angular/core";
export declare class AswApiService {
    private httpClient;
    constructor(httpClient: HttpClient);
    get(url: string, headers: any): Observable<any>;
    post(url: string, requestBody: any, headers: any): Observable<any>;
    put(url: string, requestBody: any, headers: any): Observable<any>;
    patch(url: string, requestBody: any, headers: any): Observable<any>;
    delete(url: string, headers: any): Observable<any>;
    static ɵfac: i0.ɵɵFactoryDeclaration<AswApiService, never>;
    static ɵprov: i0.ɵɵInjectableDeclaration<AswApiService>;
}
