import { NotificationPositions, NotificationShowParams } from "../../types/mjo-notification"; import type { MjointNotificationItem } from "./mjoint-notification-item"; import { LitElement } from "lit"; import { IThemeMixin } from "../../mixins/theme-mixin.js"; import "./mjoint-notification-item.js"; declare const MjointNotificationContainer_base: import("../../types/mixins").MixinConstructor & typeof LitElement; export declare class MjointNotificationContainer extends MjointNotificationContainer_base implements IThemeMixin { #private; position: NotificationPositions; threshold: number; container: HTMLDivElement; render(): import("lit-html").TemplateResult<1>; show({ message, type, time, title, onClose }: NotificationShowParams): Promise; clearAll(): void; static styles: import("lit").CSSResult[]; } declare global { interface HTMLElementTagNameMap { "mjoint-notification-container": MjointNotificationContainer; } } export {}; //# sourceMappingURL=mjoint-notification-container.d.ts.map