/** * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE */ import { FocusMonitor } from '@angular/cdk/a11y'; import { Direction, Directionality } from '@angular/cdk/bidi'; import { ChangeDetectorRef, ElementRef, OnDestroy, OnInit } from '@angular/core'; import { ControlValueAccessor } from '@angular/forms'; import { BooleanInput, OnChangeType, OnTouchedType } from '@ui-vts-kit/ng-vts/core/types'; import * as i0 from "@angular/core"; export interface VtsCheckBoxOptionInterface { label: string; value: string; checked?: boolean; disabled?: boolean; } export declare class VtsCheckboxGroupComponent implements ControlValueAccessor, OnInit, OnDestroy { private elementRef; private focusMonitor; private cdr; private directionality; static ngAcceptInputType_vtsDisabled: BooleanInput; onChange: OnChangeType; onTouched: OnTouchedType; options: VtsCheckBoxOptionInterface[]; vtsDisabled: boolean; dir: Direction; private destroy$; trackByOption(_: number, option: VtsCheckBoxOptionInterface): string; onCheckedChange(option: VtsCheckBoxOptionInterface, checked: boolean): void; constructor(elementRef: ElementRef, focusMonitor: FocusMonitor, cdr: ChangeDetectorRef, directionality: Directionality); ngOnInit(): void; ngOnDestroy(): void; writeValue(value: VtsCheckBoxOptionInterface[]): void; registerOnChange(fn: OnChangeType): void; registerOnTouched(fn: OnTouchedType): void; setDisabledState(disabled: boolean): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }