/* Copyright IBM Corp. 2018 */ import { InjectionToken } from '@angular/core'; import { HttpService } from './../../utils'; import { ZoneService } from './../services/zone/zone.service'; export declare const HTTP_SERVICE_ON_JSONP: InjectionToken; /** * Implements the {@link HttpService} interface via JSONP requests. * * @param aDoc the document * @param aScope the SDK scope * @param aZone the angular zone service * @return service implementation */ export declare function createHttpServiceOnJsonp(aDoc: Document, aScope: any, aZoneService: ZoneService): HttpService;