import * as React from 'react'; import './Image.less'; declare type ImageProps = { attrs?: any; style?: any; isSelected?: boolean; isFocused?: boolean; attributes?: any; clsPrefix?: string; className?: string; }; declare class Image extends React.Component { static defaultProps: { clsPrefix: string; }; render(): JSX.Element; } export default Image;