import { Observable } from "rxjs/Rx"; import { HttpResponse } from "@angular/common/http"; import { EndpointConfig } from "../../src/lib/Service/Impl/EndpointConfig"; import { Callable } from "../../src/lib/Service/Interface/Callable"; export declare class EndpointCallerMock implements Callable { config: EndpointConfig; mockResponse: {}; call(absoluteUrl: string, method: string, requestData?: any): Observable | any>; }