import { JSX } from "solid-js"; import { BsPrefixProps, BsPrefixRefForwardingComponent } from "./helpers"; export interface CardImgProps extends BsPrefixProps, JSX.ImgHTMLAttributes { variant?: "top" | "bottom"; } declare const CardImg: BsPrefixRefForwardingComponent<"img", CardImgProps>; export default CardImg;