import * as React from 'react'; interface Props { src?: string; srcSet?: { sm?: string; md?: string; lg?: string; xl?: string; }; alt: string; loading?: 'eager' | 'lazy'; width?: number | string; height?: number | string; display?: 'inline' | 'fill'; fill?: 'cover' | 'contain'; className?: React.HTMLAttributes['className']; style?: React.HTMLAttributes['style']; } declare const Image: React.FC; export default Image;