import { HttpClient } from '@angular/common/http'; import { TableDataInterface } from '../classes/table-data'; import { Observable } from 'rxjs'; import * as i0 from "@angular/core"; export declare class APIService { private httpClient; apiUrl: string; token: any; constructor(httpClient: HttpClient); fetch(url: string, params?: {}, cache?: boolean): Observable; post(url: string, body: any, params?: {}): any; postExtended(url: string, body?: null, params?: {}, headers?: {}): Observable>; put(url: string, body?: null, params?: {}): Observable; delete(url: string, params?: {}): Observable; fetchPagination(url: string, pageSize: number, pageNumber: number, additionalParams?: {}, cache?: boolean): Observable; private prepareEncodedParams; private getHeaders; private getParameterByName; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵprov: i0.ɵɵInjectableDeclaration; }