import { Injector } from '@angular/core'; import { ControlValueAccessor, FormGroup, NgControl } from '@angular/forms'; import { CoreFormEnrichmentService } from '../core-form/core-form-enrichment.service'; import { AlertService } from '../alert/alert.service'; import * as i0 from "@angular/core"; export declare class CoreFormControlBaseComponent implements ControlValueAccessor { required: boolean; form: FormGroup; fieldName: string; ngControl: NgControl; value: any; onChange: (_: any) => void; onTouched: () => void; touched: boolean; disabled: boolean; readonly: boolean; enrichment: CoreFormEnrichmentService; injector: Injector; as: AlertService; constructor(); register(): void; writeValue(obj: any): void; registerOnChange(fn: any): void; registerOnTouched(fn: any): void; markAsTouched(): void; setDisabledState(disabled: boolean): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }