interface NotificationsPanelStateProps { reloadPage?: boolean; title: JSX.Element; message: JSX.Element; icon: JSX.Element; } declare function NotificationsPanelState({ title, message, reloadPage, icon }: NotificationsPanelStateProps): JSX.Element; export default NotificationsPanelState;