import { ReactElement } from 'react'; import './NotificationBar.scss'; interface NotificationBarProps { setErrorMessage?: (error: string) => void; } export declare function NotificationBar({ setErrorMessage }: NotificationBarProps): ReactElement | null; export {};