import React from 'react'; import 'react-lazy-load-image-component/src/effects/blur.css'; export interface ImageProps { className?: string; children?: React.ReactNode; src?: string; title?: string; width?: string; height?: string; threshold?: number; styles?: { root: any; }; onError?: (e: any) => void; blurOnLoad?: boolean; } declare const Image: React.FC; export default Image;