import React from 'react'; interface SimpleCardProps { className?: string; title?: string; content?: string; variant?: 'h2' | 'h3' | 'h4' | 'h5' | 'h6'; } declare const SimpleCard: React.FC; export default SimpleCard;