import { EventEmitter } from "@angular/core"; import { FormGroup } from "@angular/forms"; import { DynamicCheckboxModel, DynamicCheckboxGroupModel, DynamicFormLayout, DynamicFormLayoutService, DynamicFormValidationService, DynamicFormControlComponent } from "@ng-dynamic-forms/core"; export declare class DynamicNGBootstrapCheckboxGroupComponent extends DynamicFormControlComponent { protected layoutService: DynamicFormLayoutService; protected validationService: DynamicFormValidationService; group: FormGroup; layout: DynamicFormLayout; model: DynamicCheckboxGroupModel; blur: EventEmitter; change: EventEmitter; focus: EventEmitter; constructor(layoutService: DynamicFormLayoutService, validationService: DynamicFormValidationService); getCheckboxElementId(model: DynamicCheckboxModel): string; }