import * as React from "react"; export declare enum ImageLoadState { INITIALIZED = 0, LOADING = 1, LOADED = 2, ERROR = 3 } export interface ImageProps { src: string; alt?: string; className?: string; width?: number; height?: number; crossOrigin?: React.ImgHTMLAttributes["crossOrigin"]; decoding?: React.ImgHTMLAttributes["decoding"]; /** * Either 'eager' or 'lazy' indicates how the browser should prioritize * loading this image. */ loadingMode?: React.ImgHTMLAttributes["loading"]; referrerPolicy?: React.ImgHTMLAttributes["referrerPolicy"]; } export declare const Image: React.ForwardRefExoticComponent>; //# sourceMappingURL=Image.d.ts.map