///
declare type ImageStatusType = 'beforeLoad' | 'loading' | 'error' | 'loaded';
export default function useImageStatus(defaultValue: ImageStatusType): {
status: ImageStatusType;
isBeforeLoad: boolean;
isLoading: boolean;
isError: boolean;
isLoaded: boolean;
setStatus: import("react").Dispatch>;
};
export {};