/// import { NotificationTags } from "../../../types/notifications"; interface Props { tag?: NotificationTags; } declare const Notification: ({ tag, }: Props) => JSX.Element; export default Notification;