import { Observable } from 'rxjs'; export declare function loadImage(src: string): Observable; declare type ImageLoadState = { isLoading: boolean; image?: HTMLImageElement; error?: Error; }; export declare function useLoadImage(url: string): ImageLoadState; export {}; //# sourceMappingURL=useLoadImage.d.ts.map