import { AlertLevel } from './types'; export interface Notification { type: AlertLevel; icon: { name: string; size: string; }; message: string; } export declare function addNotification(notification: Notification): void;