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