import { CollectionGroup, CollectionSlide } from '../types/collection-player.type'; export declare const clear: () => void; export declare function useCacheNavigation(nodeId: string): { set: (key: string, value: string) => Map; has: (key: string) => boolean; get: (key: string) => string | undefined; remove: (key: string) => boolean; clear: () => void; createCacheId: (id: CollectionGroup["id"] | CollectionSlide["id"]) => string; };