import { DefaultNotificationHandlerType, Notification as InnerNotification } from "../NotificationManager"; import { BaseNotificationHandler } from "./BaseNotificationHandler"; /** * @private * @class BrowserNotificationHandler * @extends {BaseNotificationHandler} */ export declare class BrowserNotificationHandler extends BaseNotificationHandler { readonly id = DefaultNotificationHandlerType.Browser; private isDocumentFocused; constructor(); private handleInitialClick; private handleDocumentBlur; private handleDocumentFocus; private currentNotifications; private handleClose; private handleShow; private handleError; private handleClick; canHandleNotification(n: InnerNotification, mode: string): boolean; handleNotification(n: InnerNotification): Promise; dismissNotification(n: InnerNotification): void; }