import { default as React } from 'react'; import { TYPE } from '../../utils/notification-utils'; interface NotificationIconProps { type?: (typeof TYPE)[keyof typeof TYPE]; } export declare const NotificationIcon: ({ type }: NotificationIconProps) => React.JSX.Element | null; export {};