import { EventEmitter } from '@angular/core'; export declare class DopeUpdateInput { /** the set given value */ initialValue: any; /** type for the dope input */ type: string; saved: EventEmitter<{}>; cancelled: EventEmitter<{}>; viewValue: string; /** value to update with */ newValue: any; value: any; /** boolean to triiger edit mode */ edit: boolean; ngOnChanges(changes: any): void; startEdit(): void; change(e: any): void; save(): void; cancel(): void; }