import { AfterViewInit, QueryList } from "@angular/core"; import { NarikDataDisplayValueComponent } from "../base/narik-data-display-value-component"; import { NarikCheckBox } from "./narik-checkbox.component"; export declare class NarikCheckBoxList extends NarikDataDisplayValueComponent implements AfterViewInit { private isInternalChange; checkBoxItems: QueryList; ngAfterViewInit(): void; addOrRemove(value: any): void; contains(value: any): boolean; private add; private remove; valueChanged(newValue: any, oldValue: any): void; private applyValueToItems; protected useData(data: any[]): void; }