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