// Type definitions for @dyna-grid/core v1.1.4 // Project: // Definitions by: zhangkun <> import { RowNode } from "../entities/rowNode"; import { BeanStub } from "../context/beanStub"; export declare class ValueCache extends BeanStub { private cacheVersion; private active; private neverExpires; init(): void; onDataChanged(): void; expire(): void; setValue(rowNode: RowNode, colId: string, value: any): any; getValue(rowNode: RowNode, colId: string): any; }