import { FC } from 'react';
interface NotificationCardProps {
    title: string;
    message: string;
    timestamp: string;
    unread?: boolean;
    onClick?: () => void;
}
export declare const NotificationCard: FC<NotificationCardProps>;
export {};
//# sourceMappingURL=notification-card.d.ts.map