import React from 'react';
import { Notification } from './use-notifications';
export declare type NotificationItemProps = Notification & {
id: string;
destroy?: (id: string) => void;
};
declare const NotificationItem: React.FC<NotificationItemProps>;
export default NotificationItem;