import { EventEmitter, OnChanges, SimpleChanges, TemplateRef } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; import { DevConfigService } from 'ng-devui/utils'; import { Observable } from 'rxjs'; import * as i0 from "@angular/core"; export declare class CheckBoxGroupComponent implements OnChanges, ControlValueAccessor { private devConfigService; static ID_SEED: number; name: string; itemWidth: number; color: any; direction: 'row' | 'column'; isShowTitle: boolean; disabled: boolean; options: any[]; filterKey: string; labelTemplate: TemplateRef; showAnimation: boolean; beforeChange: (value: any) => boolean | Promise | Observable; change: EventEmitter; values: any[]; options_display: any[]; private onChange; private onTouch; constructor(devConfigService: DevConfigService); ngOnChanges(changes: SimpleChanges): void; checkType(): void; writeValue(inputArray: any): void; registerOnChange(fn: any): void; registerOnTouched(fn: any): void; toggle($event: any, i: any): void; getCheckedArray(): any[]; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }