export type Notification = { id: number; message: string; header: string; iconPath: string; }; export interface NotificationsProps { notifications?: Notification[]; handleClose?: (id: number) => void; } export declare const Notifications: ({ notifications, handleClose }: NotificationsProps) => JSX.Element;