import React from 'react'; export interface ImageProps extends React.ImgHTMLAttributes { className?: string; src: string; lazy?: boolean; fluid?: boolean; } export declare const Image: React.ForwardRefExoticComponent>;