import React from 'react';
type CardImageProps = {
src: string;
alt?: string;
};
export declare const CardImage: React.FC<CardImageProps>;
export {};