import { FC } from 'react'; import { NotificationItem } from './types'; interface CardProps { notification: NotificationItem; onMarkAsRead: (id: string) => void; onDelete: (id: string) => void; onRedirect: (url: string) => void; } export declare const NotificationCardItem: FC; export {}; //# sourceMappingURL=NotificationCardItem.d.ts.map