import type { ExtendedCollectionsList } from './collections'; import type { CollectionData } from './collection'; import type { SearchResults } from './search'; /** * Cache stored in 'core-cache' as Record, where key is API provider. * * This is used to set cached data to render data without retrieving it from API. */ export interface IconFinderConvertedCache { collections?: ExtendedCollectionsList; collection?: Record; search?: Record; } //# sourceMappingURL=cache.d.ts.map