import type { PropsFor } from "../../types.js";
export type CardImageProps = PropsFor<"div", {
    /** Image URL */
    url: string;
    /** Static height */
    height?: string | number;
    /** Aspect ratio (default '16/9') */
    aspectRatio?: string;
}>;
/**
 * Image banner element for Card
 */
declare const CardImage: import("react").ForwardRefExoticComponent<CardImageProps & import("react").RefAttributes<HTMLDivElement>>;
export default CardImage;
