import React from 'react';
import { NotificationStatus } from '../../../../../common/models/notification';
import { StorageRef } from '../../../../../common/types';
export interface NotificationProps {
    label: string;
    icon?: StorageRef;
    title: string;
    date: any;
    onClear?: (x: any) => void;
    href?: string;
    _id: any;
    description: any;
    status?: NotificationStatus;
    actions?: NotificationAction[];
    stateNotify?: any;
}
export declare const Notification: React.FC<NotificationProps>;
