declare global { interface Window { IxIcons: any; } } export declare const getIconCacheMap: () => Map; export declare const isSvgDataUrl: (url: string) => boolean; export declare function getIconUrl(name: string, element: HTMLIxIconElement): string; export declare function resolveIcon(element: HTMLIxIconElement, iconName?: string): Promise; export declare function addIcons(icons: { [name: string]: any; }): void; export declare function addIconToCache(name: string, icon: string): void;