import { STATE, SIZE } from '../../constants'; import * as React from "react"; export interface NotificationProps { message: string; state?: keyof typeof STATE; date?: string | Date; action?: { label: string; onClick: () => void; }; onArrowClick?: () => void; size?: keyof typeof SIZE; isUnread?: boolean; hasFormattedDate?: boolean; } declare const Notification: React.FC; export default Notification;