import { ReactNode } from "react"; import { Mood } from "./moods"; interface Props { title: string; children?: ReactNode; mood?: Mood; } declare const Notification: ({ title, children, mood }: Props) => import("@emotion/react/jsx-runtime").JSX.Element | null; export default Notification;