interface LazyImageProps {
    src: string;
    alt?: string;
    width?: number;
    height?: number;
}
export default function LazyImage({ src, alt, width, height }: LazyImageProps): import("react/jsx-runtime").JSX.Element;
export {};
