import * as React from "react"; import { NotificationType } from "./components/GenericNotification"; declare type Props = { type: NotificationType; children: React.ReactNode; onHide?: () => void; automationId?: string; }; declare const GlobalNotification: (props: Props) => JSX.Element; export default GlobalNotification;