import { ChangeDetectorRef, OnDestroy } from '@angular/core'; import { ACCom, Unit } from "../../../../services/ac-com.service"; import { Event } from '../../../../common/misc/event'; export declare class ValueItem { Value: any; OldValue: any; Type: string; Path: string; Guid: string; Unit: Unit; UnitIndex: number; changed: Event; Changed(): void; constructor(); } export declare class ACPivotValueComponent implements OnDestroy { ACCom: ACCom; private ref; _Value: ValueItem; set Value(val: ValueItem); get Value(): ValueItem; get Type(): string; get displayValue(): any; get title(): string; IsEdit: boolean; editValue: any; private inputnum; private inputstring; setFocus(): void; keyPress(e: any): void; resetFocus(): void; Changed(): void; ngOnDestroy(): void; killed: boolean; SetBool(): void; CallMethode(): void; constructor(ACCom: ACCom, ref: ChangeDetectorRef); }