export declare class ValueCache { values: Map; constructor(); cache(key: string, value: any): void; value(key: string): any | undefined; }