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"; persistent: boolean; hideCloseIcon: boolean; onHide?: () => void; automationId?: string; noBottomMargin?: boolean; }; declare const InlineNotification: { ({ persistent, hideCloseIcon, ...otherProps }: Props): JSX.Element; defaultProps: { autohideDelay: string; autohide: boolean; hideCloseIcon: boolean; persistent: boolean; }; }; export default InlineNotification;