import { AfterViewChecked, ChangeDetectorRef, EventEmitter } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; import { InputTypes } from '../../models/Input-types'; import * as i0 from "@angular/core"; export declare class CheckBoxComponent implements ControlValueAccessor, AfterViewChecked { private readonly changeDetectorRef; formGroup: any; formControlName?: any; id?: any; label?: any; model: any; disabled: boolean; error: boolean; type: string; value: any; errorMessage: string; inputTypes: typeof InputTypes; constructor(changeDetectorRef: ChangeDetectorRef); ngAfterViewChecked(): void; onChange: any; onTouched: any; writeValue(value: any): void; registerOnChange(fn: any): void; registerOnTouched(fn: any): void; valueChange: EventEmitter; onValueChange(e: any): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }