import type { KeyType } from '../Cache'; import type { ShallowRef, Ref } from 'vue'; export default function useClientCache(prefix: string, keyPath: Ref, cacheFn: () => CacheType, onCacheRemove?: (cache: CacheType, fromHMR: boolean) => void): ShallowRef;