import { EventEmitter, OnInit } from "@angular/core"; import * as i0 from "@angular/core"; export interface CheckboxChoicesInterface { key: string; value: string; checked?: boolean; } export interface CheckboxChangeEventInterface { key: string; checked: boolean | undefined; index: number; } export declare class CheckboxComponent implements OnInit { label: string; isInline: boolean; onCheckboxChange: EventEmitter; choices: CheckboxChoicesInterface[]; readonly: boolean; id: string; ngOnInit(): void; inputChanged(key: string, index: number): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵcmp: i0.ɵɵComponentDeclaration; }