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<any>;
    constructor(http: Http, store: Store<any>);
    getAuthorizedUser(): any;
    query(): any;
    fetchAvatars(userIdentities: string[]): any;
}
