import { DefaultNotificationHandlerType, Notification } from "../NotificationManager"; import { BaseNotificationHandler } from "./BaseNotificationHandler"; /** * @private * @class ScreenReaderNotificationHandler * @extends {BaseNotificationHandler} */ export declare class ScreenReaderNotificationHandlerImpl extends BaseNotificationHandler { readonly id = DefaultNotificationHandlerType.ScreenReader; canHandleNotification(notification: Notification): boolean; private activeNotification; handleNotification(notification: Notification): void; dismissNotification(): void; getActiveNotifications(): Notification; private notifyChanged; } export declare const ScreenReaderNotificationHandler: ScreenReaderNotificationHandlerImpl;