import { FC } from 'react'; import { FilterTab, NotificationItem, TypeFilter } from './types'; interface NotificationListProps { loading: boolean; error: string | null; notifications: NotificationItem[]; filterTab: FilterTab; typeFilter: TypeFilter; appFilter: string; onRetry: () => void; onMarkAsRead: (id: string) => void; onDelete: (id: string) => void; onRedirect: (url: string) => void; } export declare const NotificationList: FC; export {}; //# sourceMappingURL=NotificationList.d.ts.map