import { ChangeDetectorRef, EventEmitter, OnChanges, OnInit, SimpleChanges } from "@angular/core"; import { FormBuilder, FormGroup } from "@angular/forms"; import { Observable } from "rxjs"; import { IHasChangeDetector, IHasForm, IPaletteColor } from "../../../../../types"; import * as i0 from "@angular/core"; export declare class KpiDescriptionConfigurationComponent implements OnInit, OnChanges, IHasChangeDetector, IHasForm { changeDetector: ChangeDetectorRef; private formBuilder; static lateLoadKey: string; defaultColor: { label: string; color: string; }; componentId: string; configurableUnits: boolean; label: string; backgroundColor: string; units: string; backgroundColors: IPaletteColor[]; formReady: EventEmitter>; form: FormGroup; subtitle$: Observable; constructor(changeDetector: ChangeDetectorRef, formBuilder: FormBuilder); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }