import React from 'react'; export interface ModelCardProps { id: number; name: string; provider: string; description: string; tags: string[]; supportTraining: boolean; supportDeployment: boolean; supportEvaluation: boolean; image?: string; stars: number; onTrain: () => void; onDeploy: () => void; onEvaluate: () => void; onExperience: () => void; } declare const ModelCard: React.FC; export default ModelCard;