export interface ICardProps extends React.HTMLAttributes { title: string; children: React.ReactNode; img?: string; } export var Card: React.ComponentType;