import { default as React } from 'react'; interface OptimizedImageProps extends React.ImgHTMLAttributes { src: string; alt: string; placeholder?: string; lowQualitySrc?: string; aspectRatio?: string; eager?: boolean; } /** * Optimized image component with lazy loading and progressive enhancement * Features: * - Intersection Observer for lazy loading * - Low quality image placeholder (LQIP) * - Aspect ratio preservation to prevent layout shift * - Fade-in animation on load * - Error handling with fallback */ export declare const OptimizedImage: React.FC; export {}; //# sourceMappingURL=OptimizedImage.d.ts.map