export declare const useImageCache: ({ src }: {
    src: string;
}) => {
    cachedSrc: string;
    loading: boolean;
    isCached: boolean;
};
