import React from "react"; export declare type ProductPublicCardProps = { name: string; price: number | string; description: string; image?: string; actions?: React.ReactNode; hidePrice?: boolean; onClick?: () => void; onImageClick?: () => void; highlight?: boolean; style?: React.CSSProperties; }; export declare const ProductPublicCard: React.FC;