import { default as React } from 'react'; export interface Notification { id: string; title: string; message: string; timestamp: string; read?: boolean; } export interface NotificationPanelProps { notifications: Notification[]; onMarkAsRead?: (id: string) => void; className?: string; } export declare const NotificationPanel: React.FC; //# sourceMappingURL=notification-panel.d.ts.map