import * as React from "react"; import { ImageProps } from "../Image"; export interface CardImageProps extends Omit { src?: string; fallbackIcon?: string; fallbackIconColor?: string; fallbackBackground?: string; } declare const CardImage: React.FC; export default CardImage;