import { LitElement } from 'lit'; import '../stack/Stack.js'; import '../icon/Icon.js'; declare const Notification_base: (new (...args: any[]) => import("../common/mixins/NotificationMixin.js").NotificationMixinInterface) & typeof LitElement; /** * Notifications provide important information that requires action or acknowledgement. * A notification is displayed until the user dismisses it. * * @status ready * @category feedback * @slot - Default slot used for the notification text/message. * @slot icon - Slot used for the notification icon. * @fires dismiss - Fired when the notification is dismissed, and its exit animation has completed. This event should be used to remove the dismissed notification from the DOM. * @localization dismissLabel - Accessible label for the dismiss button. */ export default class Notification extends Notification_base { static styles: import("lit").CSSResult[]; private localize; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'nord-notification': Notification; } } export {};