import { CacheConfig } from './constant.js'; export declare class SingleFlightCache { private static mapCache; static set(key: string, value: any, configs?: CacheConfig): void; static get(key: string): any; }