import { Http } from '@angular/http'; import { Observable } from 'rxjs/Observable'; import 'rxjs/add/operator/mergeMap'; import { ReadOnlyServiceBase } from './ReadOnlyService'; export declare abstract class ReadOnlyCorsServiceBase extends ReadOnlyServiceBase { constructor(http: Http, baseUrl: string); getAllItems(extra?: string): Observable; getItemById(id: string): Observable; getItemsById(ids: string[]): Observable; private waitForConfiguration(action); protected abstract getServerUrl(): Observable; }