import { ReactElement } from "react"; import { NotificationProps } from "./NotificationProps"; export interface MyNotificationProps { notifications: NotificationProps[]; tooltipTitle: string; mainIcon: ReactElement; } declare function MyNotifications(props: MyNotificationProps): JSX.Element; export default MyNotifications;