import { ComponentPropsWithoutRef } from "react"; type LazyImageProps = ComponentPropsWithoutRef<"img"> & { fadeInDuration?: number; eagerLoad?: boolean; imgClassName?: string; } & React.RefAttributes; export declare function LazyImage({ fadeInDuration, className, imgClassName, style, onLoad, eagerLoad, ref, ...props }: LazyImageProps): import("react").JSX.Element; export declare namespace LazyImage { var displayName: string; } export {}; //# sourceMappingURL=LazyImage.d.ts.map