import type { LitElement } from 'lit'; import type { Ref } from 'lit/directives/ref.js'; type Constructor> = new (...args: any[]) => T; export declare class NotificationMixinInterface { protected dismissed: boolean; protected notificationRef: Ref; dismiss(): Promise; } export declare function NotificationMixin>(superClass: T): Constructor & T; export {};