import { NotificationPositions, NotificationTypes } from "../../types/mjo-notification"; import { LitElement, TemplateResult } from "lit"; export declare class MjointNotificationItem extends LitElement { #private; notificationTitle?: string; message: string | TemplateResult<1>; type?: NotificationTypes; time: number; position?: NotificationPositions; onClose?: () => void; timeOut?: NodeJS.Timeout; removing: boolean; render(): TemplateResult<1>; connectedCallback(): void; setPosition(position: NotificationPositions): void; close(): void; static styles: import("lit").CSSResult[]; } declare global { interface HTMLElementTagNameMap { "mjoint-notification-item": MjointNotificationItem; } } //# sourceMappingURL=mjoint-notification-item.d.ts.map