import React from "react"; declare type Props = { name: string; price: number | string; description: string; cohort?: string | null; image?: string; topActions?: React.ReactNode; bottomActions?: React.ReactNode; hidePrice?: boolean; isPrivate?: boolean; onClick?: () => void; onImageClick?: () => void; highlight?: boolean; disabled?: boolean; disabledChildren?: React.ReactNode; }; export declare const ProductCard: React.FC; export {};