import React from 'react'; import type { ComponentType } from 'react'; export interface ImageLoaderProps { imageStatus?: ImageStatus; onExternalImageLoaded?: (dimensions: { height: number; width: number; }) => void; url?: string; } export interface ImageLoaderState { imageStatus: ImageStatus; } export type ImageStatus = 'complete' | 'loading' | 'error'; export declare const withImageLoader:

(Wrapped: ComponentType>) => React.ComponentClass

;