import React from 'react'; interface ProductCardProps { productName: string; thumbnailUrl?: string; handleToggleClick: () => void; } declare const ProductCard: React.FC; export default ProductCard;