import { View, ViewConfig } from "./View"; export interface ReadOnlyDataViewConfig extends ViewConfig { data?: any; } export declare class ReadOnlyDataView extends View { store: View; data?: any; immutable?: boolean; constructor(config?: ReadOnlyDataViewConfig); getData(): any; getAdditionalData(data?: any): any; setData(data: any): void; } //# sourceMappingURL=ReadOnlyDataView.d.ts.map