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<FormGroup<any>>;
    form: FormGroup;
    subtitle$: Observable<string>;
    constructor(changeDetector: ChangeDetectorRef, formBuilder: FormBuilder);
    ngOnInit(): void;
    ngOnChanges(changes: SimpleChanges): void;
    static ɵfac: i0.ɵɵFactoryDeclaration<KpiDescriptionConfigurationComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<KpiDescriptionConfigurationComponent, "nui-kpi-description-configuration", never, { "componentId": { "alias": "componentId"; "required": false; }; "configurableUnits": { "alias": "configurableUnits"; "required": false; }; "label": { "alias": "label"; "required": false; }; "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "units": { "alias": "units"; "required": false; }; "backgroundColors": { "alias": "backgroundColors"; "required": false; }; }, { "formReady": "formReady"; }, never, never, false, never>;
}
