import { EndpointCaller } from "../../src/lib/Service/Impl/EndpointCaller"; import { EndpointConfig } from "../../src/lib/Service/Impl/EndpointConfig"; import { MockedResponse } from "./HttpSpy"; import { HttpRequest } from "@angular/common/http"; export declare class EndpointCallerShunt extends EndpointCaller { mockResponse: MockedResponse | any; constructor(config?: EndpointConfig); protected createRequestObject(path: string, method: string, requestData: any): HttpRequest; tryGettingObjectFromResponse(response: any): any; }