import { JSX } from "solid-js"; import { BsPrefixOnlyProps } from "./helpers"; export interface ImageProps extends BsPrefixOnlyProps, JSX.ImgHTMLAttributes { fluid?: boolean; rounded?: boolean; roundedCircle?: boolean; thumbnail?: boolean; } declare const Image: (p: ImageProps) => JSX.Element; export default Image;