expense-manager-react
Version:
A comprehensive expense tracking application built with React, TypeScript, and Supabase
15 lines (14 loc) • 477 B
TypeScript
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;