interface IconifyBrowserCacheConfig { ttl: number; prefix: string; storage: "localStorage" | "indexedDB"; } declare const setupIconifyCache: (options?: IconifyBrowserCacheConfig) => void; export { setupIconifyCache };