/// <reference types="react" />
export interface IImageProps {
    url: string;
    width?: number;
    title?: string;
}
export declare const Image: (props: IImageProps) => JSX.Element;
