import type { ReactElement, CSSProperties } from 'react'; import type { AsyncImageProps } from '../async-image.types'; export declare enum Status { LOADING = 0, LOADED = 1, FAILED = 2 } export type ImageProps = Omit & { error: ReactElement; loader: ReactElement; objectFit?: CSSProperties['objectFit']; inView: boolean; };