import React from 'react'; export interface INotifications { apiBaseUrl: string; className?: string; userGuid: string; children?: React.ReactNode; style?: React.CSSProperties; theme?: 'light' | 'dark'; [x: string]: any; } export interface INotification { notificationID: number; userGuid: string; notificationName: string; recipientUserGuid: string; notificationTypeID: number; notificationURL: string; notificationDate: string; } export declare const Notifications: React.FC;