import { Component } from 'react'; export declare const SIZES: string[]; export declare class Image extends Component<{ className?: any; url?: any; size?: any; caption?: any; hasShadow?: any; allowFullScreen?: any; fullScreenIconColor?: any; alt?: any; styleImage?: any; style?: any; }> { state: { isFullScreen: boolean; }; static defaultProps: { size: string; fullScreenIconColor: string; }; static propTypes: {}; constructor(props: any); onKeyDown: (event: any) => void; closeFullScreen: () => void; openFullScreen: () => void; render(): JSX.Element; }