import { View, ViewConfig } from "./View"; export interface AugmentedViewBaseConfig extends ViewConfig { store: View; } export declare class AugmentedViewBase extends View { immutable: boolean; store: View; constructor(config: AugmentedViewBaseConfig); getData(): any; protected getBaseData(parentStoreData: any): any; protected embedAugmentData(result: any, parentStoreData: any): void; protected isExtraKey(key: string): boolean; protected getExtraKeyBinding(key: string): any; protected setExtraKeyValue(key: string, value: any): boolean; protected deleteExtraKeyValue(key: string): boolean; setItem(path: string, value: any): boolean; deleteItem(path: string): boolean; } //# sourceMappingURL=AugmentedViewBase.d.ts.map