import { OnInit, EventEmitter } from '@angular/core'; export declare class CheckboxComponent implements OnInit { label: string; value: any; checked: boolean; valueChanges: EventEmitter<{ checked: boolean; value: string; }>; checkedValue: any[]; update(): void; constructor(); ngOnInit(): void; } export interface CheckBoxOptions { id: string; type: 'checkbox-component'; label: string; value: any; presence: boolean; }