import { type JSX } from 'solid-js'; interface ImgLazyProps extends JSX.HTMLAttributes { src?: string; alt?: string; lazy?: boolean; onLoad?(e: Event): void; onError?(e: Event): void; } declare function ImgLazy(_: ImgLazyProps): JSX.Element; export default ImgLazy;