import { AWNotificationManager } from 'appworks-js'; import { Observable } from 'rxjs'; export declare class AWNotificationManagerService { AWNotificationManager: AWNotificationManager; constructor(); init(): void; enablePushNotifications(includeSeqNo: boolean): Observable<{}>; getNotifications(includeSeqNo: boolean): Observable<{}>; disablePushNotifications(): void; getOpeningNotification(includeSeqNo: boolean): Observable<{}>; removeNotification(seqNo: any): Observable<{}>; openListener(includeSeqNo: boolean): Observable<{}>; }