import { Http } from '@angular/http'; import 'rxjs/add/operator/map'; import 'rxjs/add/operator/catch'; import { Store } from '@ngrx/store'; import { APIDispatcher } from '../utils/index'; export declare class LoopUserService extends APIDispatcher { http: Http; store: Store; constructor(http: Http, store: Store); getAuthorizedUser(): any; query(): any; fetchAvatars(userIdentities: string[]): any; }