import { ReactElement } from "react"; export interface NotificationProps { title: string; message: string; messageSub?: string; avatar: ReactElement; } declare function Notification(props: NotificationProps): JSX.Element; export default Notification;