import NodeCache from "node-cache"; import { ICache } from "./cache"; export declare class NodeJSCache implements ICache { private nodeCache; constructor(nodeCache: NodeCache); get(key: string): Promise; batchGet(keys: Set): Promise>; set(key: string, value: T, ttl?: number): Promise; has(key: string): Promise; }