import { Binding } from "./Binding"; import { NestedDataView, NestedDataViewConfig } from "./NestedDataView"; export interface ZoomIntoPropertyViewConfig extends NestedDataViewConfig { binding: Binding; rootName?: string; } export declare class ZoomIntoPropertyView extends NestedDataView { binding: Binding; rootName: string; constructor(config: ZoomIntoPropertyViewConfig); protected getBaseData(parentStoreData: any): any; protected embedAugmentData(result: any, parentStoreData: any): void; setItem(path: string, value: any): boolean; deleteItem(path: string): boolean; } //# sourceMappingURL=ZoomIntoPropertyView.d.ts.map