import type { NotificationEventBinderData } from "./notification-event-binder-data.js";
export declare abstract class Notification implements NotificationEventBinderData {
    type: string;
    title?: string;
    channel?: string;
    $event?: CustomEvent;
    $context?: any;
    constructor(type: string, title?: string);
}
