export interface ImageProps { alt: string; src: string; id?: string; onLoad?: () => void; onError?: () => void; className?: string; /** * Specifies the [loading behavior of the image](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/img#loading). */ loading?: 'lazy' | 'eager'; stretch?: boolean; role?: string; shrink?: boolean; } declare const Image: ({ id, src, alt, onLoad, onError, className, loading, stretch, role, shrink, }: ImageProps) => import("react").JSX.Element; export default Image; //# sourceMappingURL=Image.d.ts.map