import * as React from "react"; import { NotificationType } from "./components/GenericNotification"; declare type Props = { type: NotificationType; title: string; children: React.ReactNode; autohide: boolean; autohideDelay?: "short" | "long"; hideCloseIcon: boolean; onHide?: () => void; automationId?: string; }; declare const ToastNotification: { ({ hideCloseIcon, ...otherProps }: Props): JSX.Element; defaultProps: { autohide: boolean; hideCloseIcon: boolean; autohideDelay: string; }; }; export default ToastNotification;