/// <reference types="react" />
import { Notification } from '..';
declare type Props = {
    notification: Notification;
};
declare const NotificationImage: (props: Props) => JSX.Element;
export default NotificationImage;
