import React from 'react';
export interface NotificationProps {
    message: string;
    type: 'success' | 'error' | 'warning' | 'info';
    onClose: () => void;
    config: {
        notificationOptions?: {
            duration?: number;
        };
    };
}
declare const Notification: React.FC<NotificationProps>;
export default Notification;
