import { Http } from '@angular/http'; import { Observable } from 'rxjs/Observable'; import 'rxjs/add/operator/mergeMap'; import { ReadOnlySingleServiceBase } from './ReadOnlySingleService'; export declare abstract class ReadOnlyCorsSingleServiceBase extends ReadOnlySingleServiceBase { constructor(http: Http, baseUrl: string); getItem(): Observable; private waitForConfiguration(action); protected abstract getServerUrl(): Observable; }