import React from "react"; export interface MtLazyImageProps { src: string; defaultSrc: string; alt: string; className?: string; threshold?: number; [key: string]: any; } declare const MtLazyImage: React.FC; export default MtLazyImage;