import { NotificationCard } from '@equinor/fusion'; import { FC, ReactElement } from 'react'; type NotificationsSideSheetProps = { settings: ReactElement | null; showSettings?: boolean; open: boolean; onClose: () => void; notifications: NotificationCard[]; isFetchingReadNotifications: boolean; isFetchingUnReadNotifications: boolean; }; declare const NotificationsSideSheet: FC; export default NotificationsSideSheet;