import { OnDestroy, OnInit } from '@angular/core'; import { ControlValueAccessor, FormBuilder, FormGroup } from "@angular/forms"; export declare const EXE_CHECK_GROUP_VALUE_ACCESSOR: any; export declare class CheckBoxGroupComponent implements OnInit, ControlValueAccessor, OnDestroy { private fb; private _onChangeFn; private _onTouchedFn; private _disable; disabled: boolean; checkFormGroup: FormGroup; isVertical: boolean; private _unsubscribe$; options: Array<{ label: string; value: any; disabled: boolean; }>; constructor(fb: FormBuilder); private _resolveValue; private _setValue; ngOnInit(): void; registerOnChange(fn: Function): void; registerOnTouched(fn: Function): void; setDisabledState(isDisabled: boolean): void; writeValue(obj: any): void; ngOnDestroy(): void; }