import type { ImgHTMLAttributes } from "react"; interface OptimizedImageProps extends Omit, 'src' | 'width' | 'height'> { src: string; alt: string; width: number; height: number; quality?: number; loading?: "lazy" | "eager"; } export declare function OptimizedImage({ src, alt, width, height, quality, loading, className, ...props }: OptimizedImageProps): import("react/jsx-runtime").JSX.Element; export default OptimizedImage; //# sourceMappingURL=optimized-image.d.ts.map