import React from 'react'; import PropTypes from 'prop-types'; import { BsPrefixAndClassNameOnlyProps } from './helpers'; export interface ImageProps extends BsPrefixAndClassNameOnlyProps, React.ImgHTMLAttributes { fluid?: boolean; rounded?: boolean; roundedCircle?: boolean; thumbnail?: boolean; } export declare const propTypes: { /** * @default 'img' */ bsPrefix: PropTypes.Requireable; /** * Sets image as fluid image. */ fluid: PropTypes.Requireable; /** * Sets image shape as rounded. */ rounded: PropTypes.Requireable; /** * Sets image shape as circle. */ roundedCircle: PropTypes.Requireable; /** * Sets image shape as thumbnail. */ thumbnail: PropTypes.Requireable; }; declare const Image: React.ForwardRefExoticComponent>; export default Image;