import { FunctionComponent, MouseEventHandler, ReactNode } from 'react'; export interface ToastNotificationWrapperProps { children: ReactNode; onClick: MouseEventHandler; numNotifications?: number; } declare const ToastNotificationWrapper: FunctionComponent; export default ToastNotificationWrapper;