import { Observable } from 'rxjs/Rx'; import 'rxjs/Rx'; import { DopeNotification } from '../'; export declare class NotificationService { id: number; timers: any; private _store; changes: Observable; setState(state: any): void; getState(): any; addNotification(notification: DopeNotification, start?: boolean): void; removeNotification(notification: DopeNotification): void; startTimer(notif: DopeNotification, delay?: number): void; private cancelTimer(timer); purge(): void; reset(): void; private merge(...objs); private mergeToState(...objs); }