declare type Props = { close?: boolean; contextualType: string; message: string; }; declare function NotificationBar(props: Props): JSX.Element; declare namespace NotificationBar { var defaultProps: { close: boolean; contextualType: string; message: string; }; } export default NotificationBar;