interface Notification {
    id: string;
    title: string;
    message: string;
    timestamp: Date;
    read: boolean;
}
interface NotificationDropdownProps {
    notifications: Notification[];
    onNotificationClick: (id: string) => void;
    onMarkAllRead: () => void;
}
declare const NotificationDropdown: ({ notifications, onNotificationClick, onMarkAllRead, }: NotificationDropdownProps) => import("react/jsx-runtime").JSX.Element;
export default NotificationDropdown;
