import { RowNode } from "../entities/rowNode"; import { BeanStub } from "../context/beanStub"; export declare class ValueCache extends BeanStub { private gridOptionsWrapper; 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; }