/// import { CommonProps } from './common.component'; export declare type RenderedNotification = { createTime: Date; element: JSX.Element; }; export declare type NotificationDigestProps = Pick & { unreadNotifications: RenderedNotification[]; readNotifications: RenderedNotification[]; }; export declare const NotificationDigest: (props: NotificationDigestProps) => JSX.Element;