import { Controller, Components } from "thoriumjs"; import { LineControlInitOptions } from '../../elements/linecontrols/linecontrols'; declare const NotificationsHanlder: { "__#12@#_notifications": Map; readonly notificationZone: Element; readonly notificationContainer: Element; readonly notifications: Map; add(notificationTemplate: any): Promise; delete(notificationId: string): void; }; export default NotificationsHanlder; export declare class Notifications extends Components.Div { constructor(); } interface simpleNotificationOptionsInit extends LineControlInitOptions { description?: string; deleteDelay?: number; } export declare function simpleNotification(options?: simpleNotificationOptionsInit): Promise; export declare function actionNotification(): void;