import React from "react"; export interface LazyImageProps extends React.ImgHTMLAttributes { defaultImg?: string; } declare const LazyImage: React.FunctionComponent; export default LazyImage;