import { CacheHandler } from "@nimpl/cache"; import { type LayerType } from "./types"; export declare const deleteKey: (cacheHandler: CacheHandler, type: LayerType, key: string) => Promise; export declare const deleteCacheData: (cacheHandler: CacheHandler, segments?: string[]) => Promise;