import NodeCache from 'node-cache'; import { ICache } from './cache'; export declare class NodeJSCache implements ICache { private nodeCache; constructor(nodeCache: NodeCache); get(key: string): Promise; set(key: string, value: T): Promise; has(key: string): Promise; }