import * as React from 'react'; export interface IImage { id: number; name: string; label: string; location: string; thumbnail?: string; } interface IImageProps { src: string; imageClass?: string; rootClass?: string; label: string; onDelete?: () => void; onClick?: (event: React.MouseEvent) => void; showHoverInfo?: boolean; } interface IImageState { } export default class Image extends React.Component { constructor(props: IImageProps); onDelete: (event: React.MouseEvent) => void; render(): React.JSX.Element; } export {};