1 | import * as React from 'react';
|
2 | import PropTypes from 'prop-types';
|
3 | import { BsPrefixOnlyProps } from './helpers';
|
4 | export interface ImageProps extends BsPrefixOnlyProps, React.ImgHTMLAttributes<HTMLImageElement> {
|
5 | fluid?: boolean;
|
6 | rounded?: boolean;
|
7 | roundedCircle?: boolean;
|
8 | thumbnail?: boolean;
|
9 | }
|
10 | export declare const propTypes: {
|
11 | |
12 |
|
13 |
|
14 | bsPrefix: PropTypes.Requireable<string>;
|
15 | |
16 |
|
17 |
|
18 | fluid: PropTypes.Requireable<boolean>;
|
19 | |
20 |
|
21 |
|
22 | rounded: PropTypes.Requireable<boolean>;
|
23 | |
24 |
|
25 |
|
26 | roundedCircle: PropTypes.Requireable<boolean>;
|
27 | |
28 |
|
29 |
|
30 | thumbnail: PropTypes.Requireable<boolean>;
|
31 | };
|
32 | declare const Image: React.ForwardRefExoticComponent<ImageProps & React.RefAttributes<HTMLImageElement>>;
|
33 | export default Image;
|