import { Http } from '@angular/http'; import { PageResponse } from './pageresponse'; import 'rxjs/add/operator/catch'; import 'rxjs/add/operator/map'; import 'rxjs/add/operator/toPromise'; export declare class PagingService { private http; pageNumber: number; pageSize: number; pageIsLoading: boolean; pageResponse: PageResponse; allItems: any[]; constructor(http: Http); callNextPage(httpUrl: string): void; }