import { View, ViewConfig } from "./View"; import { Binding } from "./Binding"; export interface ExposedValueViewConfig extends ViewConfig { containerBinding: Binding; key?: string | null; recordName?: string; } export declare class ExposedValueView extends View { key: string; containerBinding: Binding; recordName: string; immutable?: boolean; store: View; constructor(config: ExposedValueViewConfig); getData(): any; setKey(key: string): void; getKey(): string; setItem(path: string, value: any): boolean; deleteItem(path: string): boolean; } //# sourceMappingURL=ExposedValueView.d.ts.map