///
declare type IconCacheContext = {
icons: {
[iconUrl: string]: string;
};
loading: string[];
cacheIcon: (path: string, icon: string) => void;
startLoadingIcon: (path: string) => boolean;
};
export declare const IconCache: import("react").Context;
export {};