import { MultiMasterPool } from "../MultiMasterChefV3"; import { Token } from "../constants/type"; export declare class CacheMap { private readonly _cacheMap; set(key: string, value: T): void; get(key: string): T | undefined; getAllValues(): T[]; } declare class KuramaCacheMap { private readonly _tokenCache; private readonly _FramsPoolCache; setToken(key: string, value: Token): void; getToken(key: string): Token | undefined; setFramsPool(key: string, value: MultiMasterPool): void; getFramsPool(key: string): MultiMasterPool | undefined; } export declare const sdkCacheMap: KuramaCacheMap; export {};