import React from 'react'; export type ImageProps = { src: string; width: number; height: number; alt: string; quality?: number; priority?: boolean; sizes?: string; loading?: 'eager' | 'lazy' | undefined; decoding?: 'async' | 'auto' | 'sync' | undefined; objectFit?: 'contain' | 'cover' | 'fill' | 'none' | 'scale-down' | 'unset'; style?: React.CSSProperties; } & React.ImgHTMLAttributes; export declare function Image({ src, width, height, alt, quality, loading, decoding, priority, sizes, objectFit, ...props }: ImageProps): React.ReactElement | null;