import { BaseCache } from '../interfaces/base-cache.js'; export declare class MemoryCache implements BaseCache { private loaderList; private loaderCustomValues; init(): Promise; addLoader(loaderId: string, chunkCount: number): Promise; getLoader(loaderId: string): Promise<{ chunkCount: number; }>; hasLoader(loaderId: string): Promise; loaderCustomSet>(loaderCombinedId: string, value: T): Promise; loaderCustomGet>(loaderCombinedId: string): Promise; loaderCustomHas(loaderCombinedId: string): Promise; deleteLoader(loaderId: string): Promise; loaderCustomDelete(loaderCombinedId: string): Promise; }