import { ICache } from '@allgemein/moduls/registry/ICache'; export interface IModulRegistryCache { ttl?: number; } export declare class ModulRegistryCache implements ICache { private cachePath; private data; constructor(path: string, nodeId: string); get(key: string): Promise; set(key: string, value: any): Promise; clear(): void; }