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; }>; declare const CardImage: import("react").ForwardRefExoticComponent>; export default CardImage;