export declare const useImage: (src: string | null | undefined) => {
    hasLoaded: boolean;
    hasError: boolean;
    hasStartedInitialFetch: boolean;
};
