import React from 'react'; export interface CardImgProps { className?: string; overlay?: boolean; w?: string; h?: string; children?: React.ReactNode; } declare const CardImg: React.FC; export default CardImg;