export declare class NotificationItem {
    message: any;
    icons: {
        success: string;
        info: string;
        warn: string;
        error: string;
    };
    constructor();
}
