/// import { IconProps } from './Icon'; interface Props extends IconProps { hasUnread?: boolean; } export default function NotificationIcon({ fill, hasUnread, ...iconProps }: Props): JSX.Element; export {};