import { OnInit, OnChanges } from '@angular/core'; import 'rxjs/add/operator/debounceTime'; import 'rxjs/add/operator/distinctUntilChanged'; import { Label } from "../service/interface"; export declare class LabelPieceComponent implements OnInit, OnChanges { label: Label; labelWidth: number; labelColor: { [key: string]: string; }; ngOnChanges(): void; ngOnInit(): void; }