import { TranslateService } from '@ngx-translate/core'; import { HyperCookieService } from './hyper-cookie.service'; import { Http } from '@angular/http'; import { Observable } from 'rxjs/Rx'; import 'rxjs/add/operator/map'; import 'rxjs/add/operator/do'; import 'rxjs/add/operator/catch'; export declare class NotificationsService { private environments; private _http; private _hyperCookieService; private _translateSerivce; killAll: boolean; socketNotification: any; locale: string; constructor(environments: any, _http: Http, _hyperCookieService: HyperCookieService, _translateSerivce: TranslateService); getUserToken(): string; createNotifySocket(userData: any): void; getNotifications(source: any): Observable; countNotifications(): Observable; changeStatusNotification(id: any, sts: any): Observable; }