import { OnInit, EventEmitter } from '@angular/core'; import { FormGroup, AbstractControl, ControlContainer, FormGroupDirective } from '@angular/forms'; import { ControlUtility } from '../../Shared/services/ControlUtility'; import { CheckBoxOptions } from '../../Shared/Models/CheckBoxOptions'; export declare class CheckBoxComponent implements OnInit { private controlUtility; private controlContainer; CheckBoxControlHost: FormGroupDirective; static controlContainerstatic: any; constructor(controlUtility: ControlUtility, controlContainer: ControlContainer, CheckBoxControlHost: FormGroupDirective); group: FormGroup; options: CheckBoxOptions; OnChange: EventEmitter; CheckBoxFormControl: AbstractControl; markAllAsTouched: boolean; validationRules: any[]; validationRulesasync: any[]; ngOnInit(): void; ngAfterViewInit(): void; resetError: () => void; showGlobalError(): void; getErrorValidation(ErrorList: any): string; onValueChanged(): void; RemoveRequiredValidation: () => void; AddRequiredValidation: () => void; RemoveCustomValidation: (CustomValidation: any) => void; AddCustomValidation: (CustomValidation: any) => void; IsValid: () => void; }