import * as React from 'react'; export interface ImageTheme { maxWidth?: string; minWidth?: string; width?: string; height?: string; minHeight?: string; margin?: string; padding?: string; } export type ImageProps = React.PropsWithChildren<{ customStyle?: ImageTheme; id?: string; src?: string; caption?: string; }>; declare class Image extends React.PureComponent { render(): JSX.Element; } export default Image;