import { ComponentInterface } from '../../stencil-public-runtime'; /** * @name Notification Manager * @description The Notification Manager handles the organization and display of notifications within the application. * @category Informational * @tags notification * @img /assets/img/notification-manager.webp * @imgDark /assets/img/notification-manager-dark.webp */ export declare class NotificationManager implements ComponentInterface { elm: HTMLElement; gid: string; name: string; position: 'top-right' | 'top-left' | 'bottom-right' | 'bottom-left'; notifications: any; isDarkMode: boolean; listenNotification(evt: CustomEvent): void; listenNotificationDismiss(evt: CustomEvent): void; componentWillLoad(): void; renderNotification(notification: any): any; render(): any; }