import { Notification } from "../../global/types"; export declare class NotificationProvider { onNotification(e: { detail: Notification; }): void; onErrorToast(e: { detail: string; }): void; onWarnToast(e: { detail: string; }): void; onSuccessToast(e: { detail: string; }): void; onInfoToast(e: { detail: string; }): void; render(): any; }