import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core'; import { Checkbox } from './luci-checkbox.model'; export declare class LuciCheckboxComponent implements OnInit, OnChanges { count: Checkbox[]; withLabel: boolean; checked: boolean; checkLabel: string; checkboxAlign: string; error: string; isDisabled: boolean; checkedItem: EventEmitter; statusIcon: string; isMandatoryIcon: boolean; constructor(); ngOnInit(): void; ngOnChanges(changes: SimpleChanges): void; checkItem(index: any): void; getIcon(): string; }