import { ElementRef, TemplateRef, OnInit, OnChanges, OnDestroy } from '@angular/core'; import { GanttItemInternal } from './class'; import { Subject } from 'rxjs'; import { GanttUpper } from './gantt-upper'; import * as i0 from "@angular/core"; export declare abstract class GanttItemUpper implements OnChanges, OnInit, OnDestroy { protected elementRef: ElementRef; protected ganttUpper: GanttUpper; template: TemplateRef; item: GanttItemInternal; firstChange: boolean; unsubscribe$: Subject; constructor(elementRef: ElementRef, ganttUpper: GanttUpper); ngOnInit(): void; ngOnChanges(): void; private setPositions; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }