import React from 'react'; interface CardProps { title?: string; children: React.ReactNode; className?: string; onOpenDetails?: () => void; showDetailsModal?: boolean; } declare const Card: React.FC; export default Card;