declare class NodeCache { private ttlChecker; private cache; constructor(); get(key: string): any; set(key: string, value: any, ttlSeconds?: number): void; remove(key: string): void; removeByPrefix(prefix: string): void; flushAll(): void; } export { NodeCache };