/// <reference types="react" />
import { Notification } from '../reducers/notifications/types';
import { Theme } from '..';
declare type Props = {
    notification: Notification;
    theme?: Theme;
};
declare const NotificationIcon: (props: Props) => JSX.Element | null;
export default NotificationIcon;
