import { LitElement } from 'lit'; /** * Notification group is used to position and style a group of notifications. * * @status ready * @category feedback * @slot - Default slot in which to place notifications. * * @fires {NordEvent} dismiss - Fired when a notification is dismissed, and its exit animation has completed. This event should be used to remove the dismissed notification from the DOM. */ export default class NotificationGroup extends LitElement { static styles: import("lit").CSSResult[]; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'nord-notification-group': NotificationGroup; } }