import React from "react"; export declare enum NotificationType { Info = "info", Success = "success", Warning = "warning", Error = "error" } export declare type NotificationProps = { type?: NotificationType; onClick?: () => void; children: React.ReactNode; }; export default function Notification({ type, onClick, children, }: NotificationProps): JSX.Element;