declare type NotificationProps = { open?: boolean; onClose?: () => void; }; declare const Notification: ({ open, onClose, }: NotificationProps) => JSX.Element; export default Notification;