import React from "react";
export interface CardImageProps extends React.ImgHTMLAttributes<HTMLElement> {
    className?: string;
    top?: boolean;
    bottom?: boolean;
}
declare const CardImage: ({ className, top, bottom, ...props }: CardImageProps) => JSX.Element;
export default CardImage;
